:root {
	--bg: #f8fafc;
	--surface: #ffffff;
	--surface-soft: #eaf0fa;
	--ink: #111827;
	--muted: #667085;
	--line: #e5e7eb;
	--primary: #3563ae;
	--primary-strong: #294d89;
	--accent: #c49b4f;
	--blue: #31558f;
	--danger-bg: #fae8e8;
	--danger: #8a1f1f;
	--success-bg: #e3f4eb;
	--success: #0d5f3f;
	--radius: 8px;
	--shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.07);
	--container: min(1160px, calc(100% - 28px));
	--topbar-bg: #294d89;
	--header-bg: #ffffff;
	--footer-bg: #1b3157;
	--aflak-font-family: "Aflak Thmanyah", Tahoma, Arial, sans-serif;
	--site-header-height: 84px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--aflak-font-family);
	font-size: 16px;
	line-height: 1.75;
}

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

a:hover {
	color: var(--primary-strong);
}

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

.container {
	width: var(--container);
	margin-inline: auto;
}

.elementor-content,
.elementor-property-gallery,
.elementor-property-embed,
.elementor-property-features {
	width: 100%;
}

.aflak-property-field {
	display: inline-block;
}

.site-topbar {
	position: relative;
	overflow: hidden;
	border-block-start: 2px solid var(--accent);
	background: var(--header-bg);
	color: var(--ink);
}

.site-topbar::before {
	display: none;
}

.site-topbar__inner {
	--topbar-control-size: 28px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	min-height: 38px;
	align-items: center;
	gap: 8px;
}

.site-topbar__contact {
	display: flex;
	min-height: var(--topbar-control-size);
	align-items: center;
	justify-self: start;
	min-width: 0;
}

.site-topbar__contact a,
.site-topbar__date {
	display: flex;
	min-height: var(--topbar-control-size);
	align-items: center;
	gap: 6px;
	color: var(--ink);
	font-size: 0.72rem;
	line-height: 1.25;
	white-space: nowrap;
}

.site-topbar__contact a:hover,
.site-topbar__contact a:focus-visible {
	color: var(--primary-strong);
}

.site-topbar__contact .lucide-icon,
.site-topbar__date .lucide-icon {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	color: var(--accent);
}

.site-topbar__contact-label {
	display: none;
}

.site-topbar__contact strong {
	overflow: hidden;
	max-width: 112px;
	font-size: inherit;
	line-height: inherit;
	text-overflow: ellipsis;
}

.site-topbar__date {
	justify-self: center;
	color: var(--muted);
}

.site-topbar__date-full {
	display: none;
}

.site-topbar__date-compact {
	display: inline;
}

.site-topbar__social {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-self: end;
	gap: 4px;
}

.site-topbar__social-link {
	display: inline-grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #f4f7f5;
	color: var(--primary-strong);
}

.site-topbar__social-link:hover,
.site-topbar__social-link:focus-visible {
	border-color: var(--accent);
	background: #fff8e8;
	color: var(--primary-strong);
}

.site-topbar__social-link .lucide-icon {
	width: 15px;
	height: 15px;
}

.site-topbar__social-link--whatsapp {
	border-color: #a9c3bb;
	color: var(--primary);
}

.site-topbar__social-x {
	font-family: Arial, sans-serif;
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--header-bg);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 4px 18px rgba(21, 26, 31, 0.04);
	backdrop-filter: blur(16px);
}

.header-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-rows: var(--site-header-height);
	align-items: center;
	column-gap: 8px;
	min-height: var(--site-header-height);
}

.brand {
	grid-column: 1;
	grid-row: 1;
	display: inline-flex;
	align-items: center;
	justify-self: start;
	min-width: 0;
	gap: 9px;
	color: var(--ink);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.2;
}

.brand:hover {
	color: var(--primary-strong);
}

.brand-logo {
	flex: 0 0 auto;
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.brand-logo--custom {
	width: auto;
	max-width: min(220px, 52vw);
	height: auto;
	max-height: 68px;
}

.brand-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.header-actions {
	grid-column: 2;
	grid-row: 1;
	display: inline-flex;
	align-items: center;
	justify-content: end;
	gap: 8px;
	min-width: 0;
}

.header-action-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 6px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f4f7f5;
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1;
	padding: 0 10px;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.header-action-link:hover,
.header-action-link:focus-visible {
	color: var(--primary-strong);
	border-color: #a9c3bb;
	background: #eaf2ef;
}

.header-action-link .lucide-icon {
	width: 20px;
	height: 20px;
}

.favorites-link-count {
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 0.74rem;
	line-height: 1;
}

.favorites-link-count[hidden] {
	display: none;
}

.menu,
.footer-menu,
.property-specs,
.feature-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu {
	display: grid;
	gap: 2px;
}

.menu li {
	min-width: 0;
}

.menu li + li {
	border-top: 0;
}

.menu a {
	display: flex;
	align-items: center;
	min-height: 46px;
	border-radius: 6px;
	color: var(--ink);
	font-weight: 800;
	line-height: 1.5;
	padding: 8px 12px;
	transition: background-color 160ms ease, color 160ms ease;
}

.menu a:hover,
.menu a:focus-visible,
.menu .current-menu-item > a,
.menu .current_page_item > a {
	background: #edf4f1;
	color: var(--primary-strong);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

@media (max-width: 479px) {
	.site-topbar__inner {
		width: min(calc(100% - 20px), 1160px);
	}

	.header-action-label {
		display: none;
	}

	.header-action-link {
		width: 42px;
		padding: 0;
	}

	.favorites-link-count {
		position: absolute;
		inset-block-start: -5px;
		inset-inline-end: -5px;
		min-width: 19px;
		height: 19px;
		border: 2px solid #fff;
		font-size: 0.68rem;
	}
}

.hero-section {
	padding: 18px 0 24px;
	background: var(--bg);
}

.hero-grid {
	display: grid;
	gap: 14px;
	min-width: 0;
}

.hero-copy {
	border-bottom: 1px solid var(--line);
	min-width: 0;
	padding-bottom: 12px;
}

.eyebrow {
	margin: 0 0 6px;
	color: var(--accent);
	font-size: 0.82rem;
	font-weight: 900;
}

.hero-copy h1,
.page-head h1,
.property-summary h1 {
	margin: 0;
	color: var(--ink);
	font-size: 1.7rem;
	line-height: 1.25;
}

.hero-copy p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 0.98rem;
}

.hero-search,
.content-side,
.property-summary,
.content-main,
.narrow {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.hero-search {
	min-width: 0;
	padding: 12px;
	box-shadow: var(--shadow-soft);
}

.landing-ads {
	border-bottom: 1px solid #dfe8e3;
	background: #f3f7f5;
	overflow: hidden;
	padding: 10px 0 8px;
}

.landing-ads-carousel {
	position: relative;
	min-width: 0;
}

.landing-ads-viewport {
	overflow: hidden;
	border: 1px solid #dce6e1;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 4px 16px rgba(25, 62, 51, 0.06);
}

.landing-ads-track {
	display: grid;
	min-width: 0;
	direction: rtl;
	touch-action: pan-y;
}

.landing-ad {
	position: relative;
	display: grid;
	grid-template-areas:
		"badge copy"
		"badge action";
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	grid-column: 1;
	grid-row: 1;
	gap: 5px 12px;
	min-width: 0;
	background: #fff;
	color: var(--ink);
	min-height: 84px;
	opacity: 0;
	overflow: hidden;
	padding: 14px 16px;
	pointer-events: none;
	transform: translateX(0);
	visibility: hidden;
	transition: background-color 0.2s ease;
}

.landing-ad::before {
	position: absolute;
	inset-block: 0;
	inset-inline-start: 0;
	width: 4px;
	background: var(--accent);
	content: "";
}

.landing-ad.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.landing-ad.is-entering-next,
.landing-ad.is-entering-previous,
.landing-ad.is-leaving-next,
.landing-ad.is-leaving-previous {
	visibility: visible;
	will-change: opacity, transform;
}

.landing-ad.is-entering-next,
.landing-ad.is-entering-previous {
	z-index: 2;
}

.landing-ad.is-leaving-next,
.landing-ad.is-leaving-previous {
	z-index: 1;
	pointer-events: none;
}

.landing-ad.is-entering-next {
	animation: landing-ad-enter-from-right 0.36s ease both;
}

.landing-ad.is-leaving-next {
	animation: landing-ad-leave-to-left 0.36s ease both;
}

.landing-ad.is-entering-previous {
	animation: landing-ad-enter-from-left 0.36s ease both;
}

.landing-ad.is-leaving-previous {
	animation: landing-ad-leave-to-right 0.36s ease both;
}

@keyframes landing-ad-enter-from-right {
	from {
		opacity: 0;
		transform: translateX(34px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes landing-ad-leave-to-left {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 0;
		transform: translateX(-34px);
	}
}

@keyframes landing-ad-enter-from-left {
	from {
		opacity: 0;
		transform: translateX(-34px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes landing-ad-leave-to-right {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 0;
		transform: translateX(34px);
	}
}

.landing-ad:hover {
	background: #fbfdfc;
	color: var(--ink);
}

.landing-ad__badge {
	grid-area: badge;
	display: inline-flex;
	align-items: center;
	align-self: center;
	gap: 7px;
	border: 1px solid #dce9e3;
	border-radius: 4px;
	background: #f0f7f4;
	color: var(--primary-strong);
	font-size: 0.75rem;
	font-weight: 900;
	line-height: 1.3;
	padding: 7px 9px;
}

.landing-ad__badge i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 3px rgba(213, 162, 56, 0.15);
}

.landing-ad__copy,
.landing-ad__action {
	min-width: 0;
	overflow-wrap: anywhere;
}

.landing-ad__copy {
	grid-area: copy;
	color: var(--ink);
	font-size: 0.94rem;
	line-height: 1.55;
}

.landing-ad__action {
	grid-area: action;
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 6px;
	color: var(--primary-strong);
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1.4;
}

.landing-ad__action b {
	font-size: 1rem;
	font-weight: 700;
	transition: transform 0.18s ease;
}

.landing-ad:hover .landing-ad__action b {
	transform: translateX(-3px);
}

.landing-ads-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 34px;
	padding-top: 7px;
}

.landing-ads-status {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 5px;
	color: #6a7771;
	direction: ltr;
	font-size: 0.72rem;
	font-variant-numeric: tabular-nums;
	font-weight: 800;
}

.landing-ads-status i {
	color: #a4afa9;
	font-style: normal;
}

.landing-ads-progress {
	position: relative;
	display: block;
	width: 56px;
	height: 3px;
	margin-inline-end: 5px;
	overflow: hidden;
	border-radius: 999px;
	background: #d9e3de;
}

.landing-ads-progress span {
	position: absolute;
	inset-block: 0;
	inset-inline-start: 0;
	border-radius: inherit;
	background: var(--primary);
	transition: width 0.28s ease;
}

.landing-ads-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.landing-ads-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	direction: ltr;
}

.landing-ads-pause {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	min-width: 24px;
	height: 24px;
	min-height: 24px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: var(--muted);
	font-size: 0.68rem;
	line-height: 1;
	padding: 0;
}

.landing-ads-pause:hover,
.landing-ads-pause[aria-pressed="true"] {
	background: #e7f0ec;
	color: var(--primary-strong);
}

.landing-ads-pause[hidden] {
	display: none;
}

.landing-ads-dots button {
	width: 7px;
	min-width: 7px;
	height: 7px;
	min-height: 7px;
	border: 0;
	border-radius: 50%;
	background: #bdc8c2;
	padding: 0;
	transition: width 0.18s ease, background-color 0.18s ease;
}

.landing-ads-dots button:hover {
	background: #8ba39a;
}

.landing-ads-dots button[aria-current="true"] {
	width: 20px;
	background: var(--primary);
	border-radius: 999px;
}

.landing-ads-navigation {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 6px;
	direction: ltr;
}

.landing-ads-arrow--previous {
	order: 1;
}

.landing-ads-arrow--next {
	order: 2;
}

.landing-ads-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	min-width: 30px;
	height: 30px;
	min-height: 30px;
	border: 1px solid #d9e3de;
	border-radius: 4px;
	background: #fff;
	color: var(--ink);
	font-size: 1.25rem;
	line-height: 1;
	padding: 0 0 2px;
}

.landing-ads-arrow:hover {
	border-color: color-mix(in srgb, var(--primary) 45%, transparent);
	background: #eaf3ef;
	color: var(--primary-strong);
}

.landing-ads-carousel--single .landing-ad {
	min-height: 72px;
}

@media (prefers-reduced-motion: reduce) {
	.landing-ad,
	.landing-ad__action b,
	.landing-ads-progress span {
		transition: none;
	}

	.landing-ad.is-entering-next,
	.landing-ad.is-entering-previous,
	.landing-ad.is-leaving-next,
	.landing-ad.is-leaving-previous {
		animation: none;
	}
}

.landing-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 390px;
	background-color: #24342f;
	background-image: var(--landing-hero-image);
	background-position: 38% center;
	background-size: cover;
	color: #fff;
}

.landing-hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(270deg, rgba(27, 49, 87, 0.9) 0%, rgba(27, 49, 87, 0.76) 38%, rgba(27, 49, 87, 0.3) 70%, rgba(27, 49, 87, 0.08) 100%),
		linear-gradient(0deg, rgba(17, 24, 39, 0.56) 0%, rgba(17, 24, 39, 0) 58%);
	content: "";
}

.landing-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 12px;
	max-width: 760px;
	padding-block: 56px 34px;
}

.landing-hero .eyebrow {
	margin: 0;
	color: #f2c46f;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.landing-hero h1 {
	margin: 0;
	color: #fff;
	font-size: 2.2rem;
	line-height: 1.18;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.landing-hero p {
	margin: 0;
	color: #edf4f1;
	font-size: 1rem;
	line-height: 1.85;
	max-width: 640px;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.landing-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.landing-hero-actions .button {
	border: 1px solid rgba(255, 255, 255, 0.86);
	background: #fff;
	color: var(--primary-strong);
}

.landing-hero-actions .button:hover {
	background: #f5faf8;
	color: var(--primary-strong);
}

.landing-hero-actions .whatsapp-button {
	border-color: #128c4a;
	background: #128c4a;
	color: #fff;
}

.landing-hero-actions .whatsapp-button:hover {
	border-color: #0e783e;
	background: #0e783e;
	color: #fff;
}

.landing-search-section {
	background: var(--surface-soft);
	padding: 12px 0 18px;
}

.landing-search-panel {
	border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--shadow-soft);
	padding: 12px;
}

.landing-intro-grid {
	display: grid;
	gap: 16px;
}

.landing-intro-copy {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.landing-intro-copy h2 {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.4;
}

.landing-intro-copy p {
	margin: 0;
	color: var(--muted);
}

.landing-highlights {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.landing-highlights div {
	display: grid;
	gap: 4px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	padding: 12px;
}

.landing-highlights strong,
.landing-highlights span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.landing-highlights strong {
	color: var(--ink);
	font-size: 0.96rem;
}

.landing-highlights span {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

.front-page-content .container > :first-child {
	margin-top: 0;
}

.front-page-content .container > :last-child {
	margin-bottom: 0;
}

.landing-latest .empty-state {
	grid-column: 1 / -1;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	padding: 16px;
	color: var(--muted);
	font-weight: 900;
}

.section,
.page-head {
	padding: 24px 0;
}

.page-head {
	background: var(--surface-soft);
}

.muted {
	background: var(--surface-soft);
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.section-heading h2,
.content-main h2,
.content-side h2 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.35;
}

.section-heading a {
	flex: 0 0 auto;
	font-weight: 900;
}

.property-grid,
.realestate-featured-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.property-card {
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 4px 14px rgba(21, 26, 31, 0.05);
}

.property-card-media {
	position: relative;
}

.property-card-image {
	position: relative;
	display: block;
	aspect-ratio: 1.45;
	background: var(--surface-soft);
}

.property-card-image img,
.property-card > a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.badge {
	position: absolute;
	inset-block-start: 10px;
	inset-inline-start: 10px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	padding: 3px 9px;
	font-size: 0.78rem;
	font-weight: 900;
}

.property-card-featured-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #b8812f;
	box-shadow: 0 6px 16px rgba(69, 47, 15, 0.2);
}

.property-card-featured-badge .lucide-icon {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.favorite-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.2;
	padding: 9px 12px;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: rgba(184, 133, 53, 0.18);
}

.favorite-toggle:hover,
.favorite-toggle.is-favorite {
	border-color: rgba(184, 133, 53, 0.55);
	background: #fff8ec;
	color: #7b4f13;
}

.favorite-toggle span[aria-hidden='true'] {
	font-size: 1.12rem;
	line-height: 1;
}

.favorite-toggle.full {
	width: 100%;
}

.property-card-favorite {
	position: absolute;
	inset-block-start: 10px;
	inset-inline-end: 10px;
	z-index: 2;
	min-height: 36px;
	padding: 7px 10px;
	box-shadow: 0 8px 20px rgba(21, 26, 31, 0.13);
}

.property-card-body {
	display: grid;
	gap: 8px;
	padding: 12px;
}

.property-card h2,
.property-card h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
}

.property-card h2 a,
.property-card h3 a {
	color: var(--ink);
}

.property-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	color: var(--muted);
	font-size: 0.84rem;
}

.property-card-meta span {
	border-radius: 999px;
	background: var(--surface-soft);
	padding: 1px 8px;
}

.price,
.single-price {
	margin: 0;
	color: var(--primary-strong);
	font-size: 1.12rem;
	font-weight: 900;
}

.property-specs {
	color: var(--muted);
	font-size: 0.86rem;
}

.property-specs li {
	white-space: nowrap;
}

.property-specs b {
	color: var(--ink);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.property-specs.large {
	gap: 10px;
	color: var(--ink);
	font-size: 0.96rem;
}

.smart-suggestions {
	display: grid;
	gap: 14px;
	margin-top: 18px;
	border: 1px solid rgba(184, 133, 53, 0.26);
	border-radius: var(--radius);
	background: #fffaf1;
	padding: 14px;
}

.smart-suggestions-head {
	display: grid;
	gap: 5px;
}

.smart-suggestions-head h2,
.smart-suggestion-properties-heading h3 {
	margin: 0;
	color: var(--ink);
	font-size: 1.08rem;
	line-height: 1.4;
}

.smart-suggestions-head p:not(.eyebrow) {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.smart-suggestion-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.smart-suggestion-actions a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	border: 1px solid rgba(184, 133, 53, 0.38);
	border-radius: var(--radius);
	background: #fff;
	color: #6d4715;
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1.3;
	padding: 8px 11px;
}

.smart-suggestion-actions a:hover {
	border-color: var(--accent);
	color: var(--primary-strong);
}

.smart-suggestion-properties-heading {
	margin-top: 2px;
}

.smart-suggestion-grid {
	margin-top: 0;
}

.realestate-filter {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: end;
	gap: 10px;
	min-width: 0;
	position: relative;
}

.page-head .realestate-filter,
.landing-quick-search .realestate-filter {
	margin-top: 16px;
	border: 1px solid #dde3ee;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-soft);
	padding: 12px;
}

.property-browser-head--embedded {
	padding-top: 18px;
}

.realestate-filter--home .filter-advanced {
	border: 0;
	background: transparent;
}

.realestate-filter--home .filter-advanced-grid {
	padding-top: 0;
}


.filter-toolbar {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid #edf1f7;
	padding: 0 2px 10px;
}

.filter-toolbar strong {
	color: var(--ink);
	font-size: 0.98rem;
	line-height: 1.4;
}

.filter-active-count {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	border-radius: 999px;
	background: #e9effa;
	color: var(--primary-strong);
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
	padding: 6px 9px;
	white-space: nowrap;
}

.filter-active-count[hidden] {
	display: none;
}

.realestate-filter .filter-field,
.inquiry-form label {
	display: grid;
	align-content: start;
	gap: 5px;
	min-width: 0;
	color: var(--ink);
	font-size: 0.86rem;
	font-weight: 900;
}

.realestate-filter .filter-field > span {
	color: var(--muted);
	font-size: 0.74rem;
	line-height: 1.35;
}

.realestate-filter .filter-field--search,
.realestate-filter > .filter-budget-group,
.realestate-filter .filter-field--sort,
.filter-advanced,
.realestate-filter-actions {
	grid-column: 1 / -1;
}

input,
select,
textarea {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	padding: 10px 12px;
	font: inherit;
}

select {
	text-overflow: ellipsis;
}

.realestate-filter input,
.realestate-filter select {
	min-height: 46px;
	border-color: #d8deea;
	background-color: #fff;
	box-shadow: 0 1px 0 rgba(21, 26, 31, 0.03);
	font-size: 0.92rem;
}

.realestate-filter input:hover,
.realestate-filter select:hover {
	border-color: color-mix(in srgb, var(--primary) 38%, transparent);
}

.realestate-filter.is-loading-options select,
.realestate-filter.is-loading-options .term-filter-chip,
.realestate-filter.is-loading-options .feature-filter-chip {
	cursor: progress;
	opacity: 0.72;
	pointer-events: none;
}

.realestate-filter.is-loading-options button[type="submit"] {
	cursor: progress;
	opacity: 0.72;
}

select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
	background-position: left 16px top 21px, left 10px top 21px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-inline-start: 34px;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--primary);
	outline: 3px solid color-mix(in srgb, var(--primary) 14%, transparent);
}

.filter-term-group,
.filter-feature-group {
	display: block;
	min-inline-size: 0;
	margin: 0;
	padding: 21px 0 0;
	border: 0;
}

.filter-term-group,
.filter-feature-group {
	align-self: end;
	position: relative;
}

.filter-term-group summary,
.filter-feature-group summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-rows: auto;
	align-items: center;
	align-content: center;
	gap: 8px;
	min-height: 46px;
	border: 1px solid #d6ded8;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 1px 0 rgba(21, 26, 31, 0.03);
	color: var(--ink);
	padding: 10px 12px;
	list-style: none;
	cursor: pointer;
	transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.filter-term-group summary::-webkit-details-marker,
.filter-feature-group summary::-webkit-details-marker {
	display: none;
}

.filter-term-group summary::before,
.filter-feature-group summary::before {
	content: "";
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	width: 7px;
	height: 7px;
	border-inline-end: 2px solid var(--muted);
	border-block-end: 2px solid var(--muted);
	transform: rotate(45deg);
	transition: transform 0.16s ease;
}

.filter-term-group[open] summary::before,
.filter-feature-group[open] summary::before {
	transform: rotate(225deg);
}

.filter-term-label,
.filter-term-summary {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.filter-term-label {
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: 0;
	max-width: 100%;
	color: var(--muted);
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1.35;
}

.filter-term-summary {
	grid-column: 1;
	grid-row: 1;
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 900;
}

.filter-term-group summary:hover,
.filter-feature-group summary:hover,
.filter-term-group[open] summary,
.filter-feature-group[open] summary {
	border-color: color-mix(in srgb, var(--primary) 45%, transparent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 8%, transparent);
}

.filter-term-group.has-selected-options summary,
.filter-feature-group.has-selected-options summary {
	border-color: color-mix(in srgb, var(--primary) 55%, transparent);
	background: #edf6f2;
}

.filter-term-panel {
	display: grid;
	grid-template-rows: auto auto minmax(0, 1fr) auto;
	gap: 10px;
	position: fixed;
	z-index: 1101;
	inset: auto 12px 12px;
	max-height: min(72vh, 620px);
	border: 1px solid #dce4df;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 20px 48px rgba(21, 26, 31, 0.22);
	padding: 12px;
}

.filter-panel-header,
.filter-panel-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.filter-panel-header {
	border-bottom: 1px solid #e8eeea;
	padding-bottom: 9px;
}

.filter-panel-header strong {
	font-size: 0.96rem;
}

.filter-panel-header button {
	flex: 0 0 34px;
	width: 34px;
	min-height: 34px;
	border: 1px solid #dce4df;
	border-radius: 50%;
	background: #fff;
	color: var(--ink);
	font-size: 1.25rem;
	line-height: 1;
	padding: 0;
}

.filter-panel-actions {
	border-top: 1px solid #e8eeea;
	padding-top: 10px;
}

.filter-panel-actions button {
	min-height: 40px;
	padding: 8px 13px;
}

.filter-panel-actions .filter-panel-clear {
	border: 1px solid #dce4df;
	background: #fff;
	color: var(--ink);
}

.filter-panel-actions .filter-panel-clear:disabled {
	opacity: 0.45;
	cursor: default;
}

.filter-panel-actions .filter-panel-done {
	min-width: 90px;
}

.term-filter-search {
	display: none;
	min-height: 42px;
	width: 100%;
	border: 1px solid #cfdad4;
	border-radius: 6px;
	background: #f9fbfa;
	color: var(--ink);
	font-size: 0.9rem;
	padding: 9px 12px;
	transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.term-filter-search::placeholder {
	color: #75817b;
	opacity: 1;
}

.term-filter-search:focus {
	border-color: var(--primary);
	outline: 0;
	background: #fff;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 11%, transparent);
}

.term-filter-search:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.has-option-search .term-filter-search {
	display: block;
}

.filter-feature-group {
	inline-size: 100%;
	max-inline-size: 100%;
	min-width: 0;
}

.term-filter-list,
.feature-filter-list {
	display: grid;
	grid-template-columns: 1fr;
	align-content: start;
	gap: 0;
	inline-size: 100%;
	max-inline-size: 100%;
	max-width: 100%;
	min-inline-size: 0;
	min-width: 0;
	overflow: auto;
	overscroll-behavior: contain;
	padding-inline-end: 2px;
}

.term-filter-chip,
.feature-filter-chip {
	display: inline-flex !important;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	gap: 8px !important;
	min-height: 44px;
	border: 0;
	border-bottom: 1px solid #edf1ee;
	border-radius: 0;
	background: #fff;
	padding: 9px 6px;
	text-align: start;
	white-space: normal;
	cursor: pointer;
	transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.term-filter-chip[hidden],
.feature-filter-chip[hidden] {
	display: none !important;
}

.term-filter-chip:hover,
.term-filter-chip:has(input:checked),
.feature-filter-chip:hover,
.feature-filter-chip:has(input:checked) {
	background: #edf6f2;
	color: var(--primary-strong);
}

.term-filter-chip span,
.feature-filter-chip span {
	min-width: 0;
	overflow-wrap: anywhere;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.35;
}

.term-filter-chip input,
.feature-filter-chip input {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	min-height: 18px;
	margin: 0;
	accent-color: var(--primary);
}

.term-filter-empty,
.term-filter-no-matches {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--muted);
	font-size: 0.84rem;
	font-weight: 800;
	padding: 18px 8px;
	text-align: center;
}

.term-filter-no-matches[hidden] {
	display: none;
}

.budget-filter-panel {
	grid-template-rows: auto auto 88px 34px auto auto;
	gap: 12px;
	overflow: visible;
}

.budget-filter-current {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
}

.budget-filter-current span {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 800;
}

.budget-filter-current strong {
	color: var(--ink);
	direction: ltr;
	font-size: 0.88rem;
	line-height: 1.4;
	text-align: end;
	unicode-bidi: isolate;
}

.budget-histogram {
	display: flex;
	align-items: end;
	justify-content: stretch;
	direction: rtl;
	gap: 3px;
	height: 88px;
	border-bottom: 1px solid #cfd9d3;
	padding: 4px 3px 0;
}

.budget-histogram span {
	flex: 1 1 0;
	min-width: 2px;
	max-width: 14px;
	height: var(--budget-bar-height, 4%);
	border-radius: 2px 2px 0 0;
	background: #9aa69f;
	transition: height 0.18s ease, background-color 0.18s ease;
}

.budget-slider {
	position: relative;
	direction: rtl;
	height: 34px;
	margin-top: -17px;
}

.budget-slider-track {
	position: absolute;
	inset: 50% 0 auto;
	height: 5px;
	border-radius: 3px;
	background: #d5ddd8;
	transform: translateY(-50%);
}

.budget-slider-track > span {
	position: absolute;
	inset-block: 0;
	left: 0;
	width: 100%;
	border-radius: inherit;
	background: var(--primary);
}

.realestate-filter .budget-slider input[type="range"] {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 34px;
	min-height: 34px;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	margin: 0;
	padding: 0;
	appearance: none;
	direction: rtl;
	pointer-events: none;
}

.realestate-filter .budget-slider input[type="range"]:last-child {
	z-index: 3;
}

.realestate-filter .budget-slider input[type="range"]::-webkit-slider-runnable-track {
	height: 5px;
	background: transparent;
}

.realestate-filter .budget-slider input[type="range"]::-webkit-slider-thumb {
	width: 24px;
	height: 24px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 1px 5px rgba(21, 26, 31, 0.28);
	margin-top: -10px;
	appearance: none;
	pointer-events: auto;
	cursor: grab;
}

.realestate-filter .budget-slider input[type="range"]::-moz-range-track {
	height: 5px;
	border: 0;
	background: transparent;
}

.realestate-filter .budget-slider input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 1px 5px rgba(21, 26, 31, 0.28);
	pointer-events: auto;
	cursor: grab;
}

.budget-value-inputs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.budget-value-inputs > label {
	display: grid;
	gap: 5px;
	min-width: 0;
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 900;
}

.budget-value-control {
	display: block;
	position: relative;
	min-width: 0;
}

.realestate-filter .budget-value-control input {
	min-height: 44px;
	background: #f9fbfa;
	font-size: 0.86rem;
	font-weight: 900;
	padding: 0 12px 0 42px;
	direction: ltr;
	text-align: right;
}

.budget-value-control b {
	position: absolute;
	inset-inline-end: 11px;
	inset-block-start: 50%;
	color: var(--muted);
	font-size: 0.7rem;
	pointer-events: none;
	transform: translateY(-50%);
}

.budget-value-control input::-webkit-inner-spin-button,
.budget-value-control input::-webkit-outer-spin-button {
	margin: 0;
	appearance: none;
}

.filter-panel-backdrop,
.filter-panel-backdrop[hidden] {
	display: none;
}

.realestate-filter .filter-panel-backdrop:not([hidden]) {
	display: block;
	position: fixed;
	z-index: 1100;
	inset: 0;
	width: 100%;
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: rgba(21, 26, 31, 0.46);
	padding: 0;
}

html.has-filter-panel-open {
	overflow: hidden;
}

.filter-advanced {
	min-inline-size: 0;
	border: 0;
	margin: 0;
	padding: 0;
}

.filter-advanced > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 46px;
	border: 1px solid #dce4df;
	border-radius: var(--radius);
	background: var(--surface-soft);
	color: var(--ink);
	font-size: 0.86rem;
	font-weight: 900;
	list-style: none;
	padding: 9px 12px;
	cursor: pointer;
}

.filter-advanced > summary::-webkit-details-marker {
	display: none;
}

.filter-advanced > summary::before {
	content: "";
	order: 3;
	width: 7px;
	height: 7px;
	border-inline-end: 2px solid var(--muted);
	border-block-end: 2px solid var(--muted);
	transform: rotate(45deg);
	transition: transform 0.16s ease;
}

.filter-advanced[open] > summary::before {
	transform: rotate(225deg);
}

.filter-advanced-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	min-height: 24px;
	margin-inline-start: auto;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 0.72rem;
	line-height: 1;
	padding: 4px 7px;
}

.filter-advanced-count[hidden] {
	display: none;
}

.filter-advanced-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: end;
	gap: 10px;
	border-bottom: 1px solid #e8eeea;
	padding: 10px 2px 12px;
}

.filter-advanced-grid .filter-feature-group {
	grid-column: 1 / -1;
}

.filter-advanced-grid .filter-range-group--area_range {
	grid-column: 1 / -1;
}

button,
.button,
.realestate-filter-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 0;
	border-radius: var(--radius);
	background: var(--primary);
	color: #fff;
	font: inherit;
	font-weight: 900;
	padding: 10px 15px;
	cursor: pointer;
}

.button.secondary {
	background: var(--blue);
}

.whatsapp-button {
	background: #128c4a;
}

.call-button {
	background: var(--blue);
}

.whatsapp-button.full {
	width: 100%;
}

.call-button.full {
	width: 100%;
}

button.favorite-toggle {
	min-height: 42px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	padding: 9px 12px;
}

button.favorite-toggle:hover,
button.favorite-toggle.is-favorite {
	border-color: rgba(184, 133, 53, 0.55);
	background: #fff8ec;
	color: #7b4f13;
}

button.property-card-favorite {
	min-height: 36px;
	padding: 7px 10px;
}

.realestate-filter-actions {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-self: end;
}

.realestate-filter-actions a {
	min-width: 104px;
	background: var(--surface-soft);
	color: var(--ink);
	border: 1px solid #dce4df;
}

.realestate-filter-actions a:hover {
	border-color: var(--line);
	color: var(--primary-strong);
}

.archive-count {
	color: var(--muted);
	font-weight: 900;
}

.property-taxonomy-head .archive-description {
	max-width: 760px;
	color: var(--muted);
	font-weight: 700;
	line-height: 1.9;
}

.property-taxonomy-head .archive-description p {
	margin: 8px 0;
}

.property-taxonomy-head .property-back-link {
	margin: 4px 0 0;
}

.property-hero {
	padding: 16px 0 22px;
	background: var(--surface-soft);
}

.property-hero-grid,
.content-grid {
	display: grid;
	gap: 14px;
}

.property-gallery,
.gallery-main {
	border-radius: var(--radius);
}

.property-gallery {
	position: relative;
	min-width: 0;
}

.gallery-main {
	width: 100%;
	aspect-ratio: 1.2;
	object-fit: cover;
	background: #e4ebe7;
}

.gallery-placeholder {
	display: grid;
	place-items: center;
	min-height: 260px;
	color: var(--muted);
	font-weight: 900;
}

.gallery-count {
	position: absolute;
	inset-block-start: 10px;
	inset-inline-start: 10px;
	margin: 0;
	border-radius: 999px;
	background: rgba(21, 26, 31, 0.72);
	color: #fff;
	padding: 3px 10px;
	font-size: 0.8rem;
	font-weight: 900;
}

.gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 7px;
	margin-top: 7px;
}

.gallery-thumbs button {
	min-height: auto;
	padding: 0;
	background: transparent;
	border: 2px solid transparent;
}

.gallery-thumbs img {
	width: 100%;
	aspect-ratio: 1.2;
	object-fit: cover;
	border-radius: 6px;
}

.property-embed {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #e4ebe7;
}

.property-embed iframe,
.property-embed .property-embed-frame {
	display: block;
	width: 100%;
	border: 0;
	aspect-ratio: 16 / 9;
}

.property-video iframe[src*="tiktok.com"] {
	max-width: 430px;
	margin-inline: auto;
	aspect-ratio: 9 / 16;
	background: #fff;
}

.property-map iframe {
	min-height: 260px;
}

.property-summary {
	display: grid;
	gap: 12px;
	padding: 14px;
	box-shadow: var(--shadow-soft);
}

.property-eyebrow-row,
.property-meta-chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	min-width: 0;
}

.property-eyebrow-row .eyebrow {
	margin: 0;
}

.property-status-pill,
.property-meta-chips span {
	border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
	border-radius: 999px;
	background: #edf6f2;
	color: var(--primary-strong);
	padding: 3px 10px;
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1.45;
}

.property-status-pill {
	background: #fff7e9;
	border-color: rgba(184, 133, 53, 0.25);
	color: #7d551c;
}

.property-key-specs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.property-key-specs li {
	display: grid;
	gap: 2px;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	padding: 9px 8px;
}

.property-key-specs strong,
.property-key-specs span {
	display: block;
	min-width: 0;
	overflow-wrap: anywhere;
	line-height: 1.35;
}

.property-key-specs strong {
	color: var(--ink);
	font-size: 1rem;
}

.property-key-specs span {
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 900;
}

.action-row {
	display: grid;
	gap: 8px;
}

.content-main,
.narrow,
.content-side {
	padding: 16px;
}

.content-main {
	display: grid;
	gap: 14px;
}

.property-content-block {
	display: grid;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}

.property-content-block:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.property-section-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px 14px;
}

.property-section-heading h2,
.property-section-heading p {
	margin: 0;
}

.property-section-heading p {
	max-width: 620px;
	color: var(--muted);
	font-size: 0.9rem;
}

.property-section-heading > span {
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface-soft);
	padding: 4px 10px;
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 900;
	white-space: nowrap;
}

.property-offers-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
}

.property-offer-card {
	display: grid;
	align-content: start;
	gap: 12px;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 13px;
}

.property-offer-card--sold,
.property-offer-card--rented {
	background: #f7f8f8;
	opacity: 0.78;
}

.property-offer-card header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.property-offer-card h3 {
	margin: 2px 0 0;
	font-size: 1rem;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.property-offer-kind {
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 800;
}

.property-offer-status {
	flex: 0 0 auto;
	border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
	border-radius: 999px;
	background: #edf6f2;
	color: var(--primary-strong);
	padding: 3px 8px;
	font-size: 0.74rem;
	font-weight: 900;
}

.property-offer-card--reserved .property-offer-status {
	border-color: rgba(184, 133, 53, 0.25);
	background: #fff7e9;
	color: #7d551c;
}

.property-offer-card--sold .property-offer-status,
.property-offer-card--rented .property-offer-status {
	border-color: var(--line);
	background: #ecefef;
	color: #5d6667;
}

.property-offer-price {
	display: grid;
	gap: 2px;
}

.property-offer-price strong {
	color: var(--primary-strong);
	font-size: 1.18rem;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.property-offer-price span {
	color: var(--muted);
	font-size: 0.82rem;
}

.property-offer-specs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 7px;
	margin: 0;
}

.property-offer-specs div {
	display: grid;
	gap: 1px;
	min-width: 0;
	border-inline-start: 2px solid #d8e8e3;
	padding-inline-start: 8px;
}

.property-offer-specs dt,
.property-offer-specs dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.property-offer-specs dt {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 800;
}

.property-offer-specs dd {
	color: var(--ink);
	font-size: 0.86rem;
	font-weight: 900;
}

.property-offer-facades {
	display: grid;
	gap: 6px;
}

.property-offer-facades > span {
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 900;
}

.property-offer-facades ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.property-offer-facades li {
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface-soft);
	padding: 3px 8px;
	font-size: 0.76rem;
	font-weight: 800;
}

.property-offer-notes {
	margin: 0;
	border-top: 1px solid var(--line);
	padding-top: 9px;
	color: var(--muted);
	font-size: 0.86rem;
}

.property-offer-contact {
	justify-self: stretch;
	min-height: 40px;
}

.property-boundaries-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
}

.property-boundaries-grid > div {
	display: grid;
	gap: 5px;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	padding: 10px;
}

.property-boundaries-grid dt {
	color: var(--primary-strong);
	font-size: 0.8rem;
	font-weight: 900;
}

.property-boundaries-grid dd {
	display: grid;
	gap: 2px;
	min-width: 0;
	margin: 0;
}

.property-boundaries-grid strong,
.property-boundaries-grid span {
	overflow-wrap: anywhere;
}

.property-boundaries-grid strong {
	color: var(--ink);
	font-size: 0.88rem;
}

.property-boundaries-grid span {
	color: var(--muted);
	font-size: 0.76rem;
}

.property-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr));
	gap: 8px;
	margin: 0;
}

.property-detail-grid div {
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 10px;
}

.property-detail-grid dt {
	margin: 0 0 2px;
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.4;
}

.property-detail-grid dd {
	margin: 0;
	color: var(--ink);
	font-weight: 900;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.property-location-line {
	margin: 0;
	color: var(--ink);
	font-weight: 900;
}

.property-floor-plan .button {
	justify-self: start;
}

.whatsapp-panel {
	display: grid;
	gap: 10px;
}

.property-summary-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.contact-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.whatsapp-panel p {
	margin: 0;
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.feature-list li {
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	padding: 4px 11px;
}

.realestate-favorites {
	display: grid;
	gap: 14px;
}

.favorites-toolbar {
	display: grid;
	gap: 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	padding: 12px;
}

.favorites-toolbar p,
.favorites-empty p {
	margin: 0;
	color: var(--muted);
}

.favorites-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.favorites-empty {
	display: grid;
	place-items: center;
	gap: 10px;
	min-height: 220px;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	padding: 24px;
	text-align: center;
}

.favorites-empty[hidden],
.favorites-actions[hidden],
.favorites-grid[hidden],
.realestate-favorites.is-loading .favorites-empty {
	display: none;
}

.realestate-favorites.is-loading::after {
	content: 'جاري تحميل المفضلة...';
	display: grid;
	place-items: center;
	min-height: 180px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--muted);
	font-weight: 900;
}

body.has-favorites-modal {
	overflow: hidden;
}

.favorites-modal[hidden] {
	display: none;
}

.favorites-modal {
	position: fixed;
	inset: 0;
	z-index: 250;
	display: grid;
	align-items: end;
	justify-items: stretch;
	direction: rtl;
}

.favorites-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 24, 20, 0.58);
	backdrop-filter: blur(3px);
	animation: favorites-modal-fade-in 180ms ease both;
}

.favorites-modal__panel {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	width: 100%;
	max-height: 100dvh;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #fff;
	box-shadow: 0 -18px 50px rgba(9, 31, 25, 0.22);
	animation: favorites-modal-enter 220ms ease both;
}

.favorites-modal__header {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 76px;
	border-bottom: 1px solid var(--line);
	background: #fff;
	padding: calc(14px + env(safe-area-inset-top)) 18px 14px;
}

.favorites-modal__eyebrow {
	display: block;
	margin-bottom: 2px;
	color: var(--accent-strong);
	font-size: 0.76rem;
	font-weight: 900;
}

.favorites-modal__header h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 1.18rem;
	line-height: 1.35;
}

.favorites-modal__count {
	display: inline-grid;
	place-items: center;
	min-width: 25px;
	height: 25px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 0.75rem;
	line-height: 1;
}

.favorites-modal__count[hidden] {
	display: none;
}

.favorites-modal__close {
	display: inline-grid;
	place-items: center;
	width: 42px;
	min-width: 42px;
	height: 42px;
	min-height: 42px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--surface-soft);
	color: var(--ink);
	padding: 0;
}

.favorites-modal__close:hover,
.favorites-modal__close:focus-visible {
	border-color: #a9c3bb;
	background: #eaf2ef;
	color: var(--primary-strong);
}

.favorites-modal__body {
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
}

.favorites-modal .favorites-toolbar {
	border-inline: 0;
	border-top: 0;
	border-radius: 0;
	background: transparent;
	padding: 0 0 14px;
}

.favorites-modal .favorites-empty {
	min-height: min(52dvh, 360px);
}

.favorites-modal .favorites-grid {
	grid-template-columns: minmax(0, 1fr);
}

@keyframes favorites-modal-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes favorites-modal-enter {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 720px) {
	.favorites-modal {
		align-items: center;
		justify-items: center;
		padding: 24px;
	}

	.favorites-modal__panel {
		width: min(960px, 100%);
		max-height: min(780px, calc(100dvh - 48px));
		border: 1px solid rgba(255, 255, 255, 0.32);
		border-radius: 8px;
		box-shadow: 0 28px 80px rgba(9, 31, 25, 0.28);
	}

	.favorites-modal__header {
		padding: 16px 20px;
	}

	.favorites-modal__body {
		padding: 18px 20px 22px;
	}

	.favorites-modal .favorites-toolbar {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.favorites-modal .favorites-actions {
		grid-template-columns: repeat(2, auto);
	}

	.favorites-modal .favorites-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/* Compact cart-style rows used only inside the favorites view. */
.favorites-modal .realestate-favorites .property-grid.favorites-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
}

.favorite-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	padding: 8px;
}

.favorite-cart-item__image {
	position: relative;
	display: block;
	width: 104px;
	height: 92px;
	overflow: hidden;
	border-radius: 6px;
	background: var(--surface-soft);
}

.favorite-cart-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.favorite-cart-item__placeholder {
	position: absolute;
	inset-inline: 5px;
	bottom: 5px;
	border-radius: 4px;
	background: rgba(9, 51, 42, 0.86);
	color: #fff;
	padding: 2px 5px;
	font-size: 0.62rem;
	font-weight: 800;
	text-align: center;
}

.favorite-cart-item__content {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.favorite-cart-item__meta,
.favorite-cart-item__details {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 12px;
	min-width: 0;
}

.favorite-cart-item__reference {
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	padding: 3px 8px;
	font-size: 0.68rem;
	font-weight: 900;
	white-space: nowrap;
}

.favorite-cart-item__location,
.favorite-cart-item__area {
	overflow: hidden;
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.favorite-cart-item h3 {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
}

.favorite-cart-item h3 a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--ink);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.favorite-cart-item__price {
	color: var(--accent-strong);
	font-size: 0.96rem;
	font-weight: 900;
}

.favorite-cart-item__remove {
	align-self: center;
	min-width: 58px;
	min-height: 38px;
	border: 1px solid #e4d2ce;
	border-radius: 6px;
	background: #fff;
	color: #9b3b2f;
	padding: 7px 10px;
	font-size: 0.78rem;
	font-weight: 900;
}

.favorite-cart-item__remove:hover,
.favorite-cart-item__remove:focus-visible {
	border-color: #c76d60;
	background: #fff5f3;
	color: #7d2b22;
}

@media (max-width: 520px) {
	.favorites-modal__body {
		padding-inline: 10px;
	}

	.favorite-cart-item {
		grid-template-columns: 82px minmax(0, 1fr) auto;
		gap: 9px;
		padding: 7px;
	}

	.favorite-cart-item__image {
		width: 82px;
		height: 82px;
	}

	.favorite-cart-item__content {
		gap: 4px;
	}

	.favorite-cart-item h3 {
		font-size: 0.86rem;
		line-height: 1.45;
	}

	.favorite-cart-item__location,
	.favorite-cart-item__area {
		font-size: 0.7rem;
	}

	.favorite-cart-item__price {
		font-size: 0.86rem;
	}

	.favorite-cart-item__remove {
		min-width: 44px;
		padding-inline: 7px;
		font-size: 0.7rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.favorites-modal__backdrop,
	.favorites-modal__panel {
		animation: none;
	}
}

.similar-properties-section {
	border-top: 1px solid var(--line);
	background: var(--surface-soft);
}

.property-single {
	padding-bottom: 78px;
}

.mobile-contact-bar {
	position: fixed;
	inset-inline: 0;
	inset-block-end: 0;
	z-index: 70;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 96px), 1fr));
	gap: 8px;
	border-top: 1px solid rgba(21, 26, 31, 0.12);
	background: rgba(255, 255, 255, 0.94);
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	box-shadow: 0 -10px 24px rgba(21, 26, 31, 0.12);
	backdrop-filter: blur(12px);
}

.mobile-contact-bar .button,
.mobile-contact-bar .favorite-toggle {
	min-height: 44px;
	padding: 8px 10px;
	font-size: 0.88rem;
	line-height: 1.25;
	white-space: normal;
}

@media (max-width: 919px) {
	.property-single--has-mobile-contact .property-summary-actions {
		display: none;
	}

	.property-sticky-card .contact-actions {
		display: none;
	}
}

.inquiry-form {
	display: grid;
	gap: 12px;
}

.hp-field {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.form-notice {
	border-radius: var(--radius);
	padding: 10px 12px;
}

.form-notice.success {
	background: var(--success-bg);
	color: var(--success);
}

.form-notice.error {
	background: var(--danger-bg);
	color: var(--danger);
}

.reference-line {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	padding: 8px 10px;
	font-weight: 900;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 7px;
	width: 100%;
	margin-top: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	padding: 12px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	margin: 0;
	color: var(--ink);
	font-weight: 800;
	line-height: 1;
	padding: 9px 12px;
}

.pagination .current {
	background: var(--primary);
	color: #fff;
}

.pagination .prev,
.pagination .next {
	min-width: clamp(96px, 14vw, 148px);
	padding-inline: clamp(20px, 3vw, 34px);
	font-weight: 900;
}

.pagination a:hover,
.pagination a:focus-visible {
	border-color: var(--primary);
	background: #fff;
	color: var(--primary-strong);
}

@media (max-width: 479px) {
	.pagination {
		gap: 6px;
		padding: 10px;
	}

	.pagination .page-numbers {
		order: 1;
		min-width: 40px;
		min-height: 40px;
		padding-inline: 10px;
	}

	.pagination .prev,
	.pagination .next {
		order: 2;
		flex: 1 1 calc(50% - 3px);
		min-width: 112px;
		padding-inline: 22px;
	}
}

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	background: var(--footer-bg);
	color: #dbe5f2;
	padding: 0;
}

.footer-grid {
	display: grid;
	align-items: start;
	gap: 30px;
	padding-block: 44px 38px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.footer-brand-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	gap: 10px;
	color: #fff;
	text-align: center;
}

.footer-brand-link:hover {
	color: #fff;
}

.footer-brand-logo {
	flex: 0 0 auto;
	width: 78px;
	height: 78px;
	object-fit: contain;
}

.footer-brand-logo--custom {
	width: auto;
	max-width: min(200px, 68vw);
	height: auto;
	max-height: 92px;
}

.footer-brand-name {
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.3;
}

.footer-registration-details {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.footer-registration-details div {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-content: center;
	align-items: center;
	column-gap: 11px;
	row-gap: 2px;
	min-width: 0;
	min-height: 48px;
}

.footer-registration-details__icon {
	display: grid;
	grid-column: 1;
	grid-row: 1 / span 2;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(196, 155, 79, 0.4);
	border-radius: var(--radius);
	color: var(--accent);
}

.footer-registration-details__icon .lucide-icon {
	width: 19px;
	height: 19px;
}

.footer-registration-details dt,
.footer-registration-details dd {
	grid-column: 2;
	width: 100%;
	text-align: right;
}

.footer-registration-details dt {
	grid-row: 1;
}

.footer-registration-details dd {
	grid-row: 2;
}

.footer-registration-details dt {
	color: #e2c686;
	font-size: 0.82rem;
	font-weight: 700;
}

.footer-registration-details dt::after {
	content: "";
}

.footer-registration-details dd {
	overflow: hidden;
	margin: 0;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	text-overflow: ellipsis;
	unicode-bidi: isolate;
	white-space: nowrap;
}

.footer-tagline {
	max-width: 260px;
	margin: 18px 0 0;
	color: #b5c4d8;
	font-size: 0.88rem;
	line-height: 1.95;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin-top: 20px;
}

.footer-social__link {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.03);
	color: var(--accent);
	font-family: Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 900;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
	border-color: var(--accent);
	background: var(--accent);
	color: #1b3157;
}

.footer-social__link .lucide-icon {
	width: 17px;
	height: 17px;
}

.footer-navigation,
.footer-contact {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 24px;
}

.footer-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	min-width: 0;
}

.footer-links {
	min-width: 0;
}

.site-footer .footer-title {
	position: relative;
	margin: 0 0 18px;
	padding-bottom: 12px;
	color: #fff;
	font-size: 1.02rem;
	line-height: 1.4;
}

.site-footer .footer-title::after {
	position: absolute;
	inset-inline-start: 0;
	inset-block-end: 0;
	width: 30px;
	height: 2px;
	background: var(--accent);
	content: "";
}

.footer-menu {
	display: grid;
	gap: 4px;
}

.footer-menu a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 36px;
	color: #d5dfec;
	font-size: 0.86rem;
	font-weight: 700;
}

.footer-menu a::before {
	width: 10px;
	height: auto;
	border: 0;
	content: "‹";
	font-family: Arial, sans-serif;
	font-size: 1rem;
	line-height: 1;
	transform: none;
	transition: transform 160ms ease;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	color: #fff;
}

.footer-menu a:hover::before,
.footer-menu a:focus-visible::before {
	transform: translateX(-3px);
}

.footer-contact-list {
	display: grid;
	gap: 6px;
}

.footer-contact-number {
	display: grid;
	grid-template-columns: max-content max-content;
	justify-content: start;
	gap: 6px;
}

.footer-contact-number .footer-contact-link {
	min-width: 0;
}

.footer-contact-whatsapp {
	justify-content: center;
	gap: 6px;
	padding-inline: 10px;
}

.footer-contact-whatsapp__label {
	display: inline;
	color: #fff;
	font-size: 0.76rem;
	font-weight: 800;
	white-space: nowrap;
}

.footer-contact-link {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	background: transparent;
	color: #fff;
	padding: 6px 4px;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
	border-color: rgba(196, 155, 79, 0.38);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
}

.footer-contact-link .lucide-icon {
	width: 19px;
	height: 19px;
	color: var(--accent);
}

.footer-contact-link span {
	display: grid;
	min-width: 0;
}

.footer-contact-link small {
	color: #b5c4d8;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.4;
}

.footer-contact-link strong {
	overflow: hidden;
	color: #fff;
	font-size: 0.86rem;
	line-height: 1.5;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.footer-contact-link--whatsapp .lucide-icon {
	color: var(--accent);
}

.footer-contact-link--phone .lucide-icon {
	color: var(--accent);
}

.footer-contact-link--email .lucide-icon {
	color: var(--accent);
}

.footer-working-hours {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #d5dfec;
	font-size: 0.72rem;
	line-height: 1.4;
	white-space: nowrap;
}

.footer-working-hours .lucide-icon {
	width: 17px;
	height: 17px;
	color: var(--accent);
}

.footer-working-hours strong {
	color: #fff;
}

.footer-working-hours .is-closed {
	color: #e2c686;
	font-weight: 800;
}

.footer-working-hours__separator {
	color: rgba(255, 255, 255, 0.3);
}

.site-footer a {
	color: #fff;
}

.footer-bottom {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	margin-top: 0;
	padding-block: 20px;
	color: #aebed3;
	font-size: 0.8rem;
}

.footer-copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 14px;
}

.footer-developer-credit a {
	color: var(--accent);
	font-weight: 800;
}

.footer-developer-credit a:hover,
.footer-developer-credit a:focus-visible {
	color: #f1cf94;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.footer-legal {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	white-space: nowrap;
}

.footer-legal > a:not(.footer-back-top) {
	color: #d5dfec;
}

.footer-back-top {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: var(--radius);
	background: transparent;
	color: #fff;
}

.footer-back-top:hover,
.footer-back-top:focus-visible {
	border-color: var(--accent);
	background: var(--accent);
	color: #1b3157;
}

.footer-admin-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: color-mix(in srgb, var(--footer-bg) 82%, #000);
	margin-top: 0;
}

.aflak-header-static .site-header {
	position: relative;
	top: auto;
}

.footer-admin-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 58px;
	padding-block: 10px;
}

.footer-admin-bar__label {
	color: #aebed3;
	font-size: 0.78rem;
	font-weight: 700;
}

.footer-admin-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	color: #dbe5f2;
	font-size: 0.82rem;
	font-weight: 900;
}

.footer-admin-link .lucide-icon {
	width: 18px;
	height: 18px;
	color: var(--accent);
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
	color: #fff;
}

/* Keep the compact footer layout authoritative when LiteSpeed serves a stale split stylesheet. */
.site-footer .footer-location {
	gap: 22px;
	padding-block: 28px;
}

.site-footer .footer-location__map {
	height: 170px;
}

@media (min-width: 760px) {
	.site-footer .footer-location {
		grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.15fr);
		gap: 28px;
	}

	.site-footer .footer-location__map {
		height: 180px;
	}

	.site-footer .footer-location .footer-registration-details {
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding-top: 20px;
	}
}

@media (min-width: 1080px) {
	.site-footer .footer-location {
		grid-template-columns: minmax(250px, 0.8fr) minmax(340px, 1.15fr) minmax(250px, 0.85fr);
		gap: 34px;
	}

	.site-footer .footer-location__map {
		height: 178px;
	}

	.site-footer .footer-location .footer-registration-details {
		grid-column: auto;
		grid-template-columns: minmax(0, 1fr);
		border-top: 0;
		border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
		padding-block: 6px;
		padding-inline-start: 28px;
	}
}

@media (max-width: 679px) {
	.footer-bottom {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer-legal {
		justify-content: space-between;
		width: 100%;
		gap: 8px;
	}

	.footer-working-hours {
		min-width: 0;
		gap: 5px;
		font-size: 0.68rem;
	}

	.footer-working-hours .lucide-icon {
		width: 15px;
		height: 15px;
	}
}

@media (min-width: 680px) {
	.site-topbar::before {
		background-size: 142px;
	}

	.site-topbar__inner {
		--topbar-control-size: 30px;
		min-height: 42px;
	}

	.site-topbar__contact a,
	.site-topbar__date {
		font-size: 0.78rem;
	}

	.site-topbar__contact-label,
	.site-topbar__date-full {
		display: inline;
	}

	.site-topbar__date-compact {
		display: none;
	}

	.site-topbar__social-link {
		width: 30px;
		height: 30px;
	}

	.header-inner {
		grid-template-rows: var(--site-header-height);
		min-height: var(--site-header-height);
	}

	.hero-section {
		padding: 28px 0 32px;
	}

	.hero-grid {
		gap: 18px;
	}

	.hero-copy h1,
	.page-head h1,
	.property-summary h1 {
		font-size: 2.05rem;
	}

	.hero-search {
		padding: 16px;
	}

	.landing-ad {
		grid-template-areas: "badge copy action";
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 18px;
		min-height: 72px;
		padding: 13px 18px;
	}

	.landing-ad__copy {
		font-size: 0.98rem;
	}

	.landing-ad__action {
		white-space: nowrap;
	}

	.landing-hero {
		min-height: 430px;
	}

	.landing-hero h1 {
		font-size: 2.8rem;
	}

	.landing-search-panel {
		padding: 14px;
	}

	.landing-highlights {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.property-offers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.property-offer-contact {
		justify-self: start;
	}

	.page-head .realestate-filter,
	.landing-quick-search .realestate-filter {
		padding: 14px;
	}

	.realestate-filter {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 12px;
	}

	.filter-toolbar,
	.filter-advanced {
		grid-column: 1 / -1;
	}

	.realestate-filter .filter-field--search,
	.realestate-filter > .filter-term-group--city,
	.realestate-filter > .filter-term-group--district,
	.realestate-filter > .filter-term-group--type,
	.realestate-filter > .filter-term-group--purpose,
	.realestate-filter > .filter-budget-group {
		grid-column: span 2;
	}

	.realestate-filter .filter-field--sort {
		grid-column: span 2;
	}

	.realestate-filter-actions {
		grid-column: span 4;
	}

	.filter-term-panel {
		position: absolute;
		inset: auto;
		inset-block-start: calc(100% + 8px);
		inset-inline-start: 0;
		z-index: 40;
		width: max(100%, 340px);
		max-width: min(420px, calc(100vw - 40px));
		max-height: 420px;
		box-shadow: 0 16px 36px rgba(21, 26, 31, 0.16);
	}

	.term-filter-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-height: 280px;
	}

	.feature-filter-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-height: 280px;
	}

	.filter-feature-group .filter-term-panel {
		width: min(520px, calc(100vw - 48px));
	}

	.filter-budget-group .budget-filter-panel {
		width: min(500px, calc(100vw - 48px));
		max-height: none;
	}

	.realestate-filter .filter-panel-backdrop:not([hidden]) {
		display: none;
	}

	.favorites-actions {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.property-grid,
	.realestate-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.gallery-main {
		aspect-ratio: 16 / 10;
	}

	.gallery-placeholder {
		min-height: 330px;
	}
}

@media (min-width: 1080px) {
	.header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-rows: var(--site-header-height);
		justify-content: stretch;
		column-gap: 24px;
		min-height: var(--site-header-height);
	}

	.brand-logo {
		width: 72px;
		height: 72px;
	}

	.brand-logo--custom {
		width: auto;
		max-width: 270px;
		height: auto;
		max-height: 80px;
	}

	.header-actions {
		grid-column: 2;
		grid-row: 1;
	}
}

@media (min-width: 920px) {
	.hero-section {
		padding: 40px 0;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 0.55fr) minmax(520px, 0.95fr);
		align-items: start;
	}

	.hero-copy {
		border-bottom: 0;
		padding: 10px 0 0;
	}

	.hero-copy h1 {
		font-size: 2.65rem;
	}

	.landing-hero {
		min-height: 520px;
	}

	.landing-hero-inner {
		padding-block: 86px 58px;
	}

	.landing-hero h1 {
		font-size: 3.6rem;
	}

	.landing-hero p {
		font-size: 1.08rem;
	}

	.landing-search-section {
		padding: 18px 0 22px;
	}

	.landing-search-panel {
		padding: 16px;
	}

	.landing-intro-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
		align-items: start;
	}

	.page-head .realestate-filter,
	.landing-quick-search .realestate-filter {
		padding: 16px;
	}

	.realestate-filter {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

	.filter-toolbar,
	.filter-advanced {
		grid-column: 1 / -1;
	}

	.realestate-filter .filter-field--search {
		grid-column: span 4;
	}

	.realestate-filter > .filter-term-group--city,
	.realestate-filter > .filter-term-group--district {
		grid-column: span 4;
	}

	.realestate-filter > .filter-term-group--type,
	.realestate-filter > .filter-term-group--purpose {
		grid-column: span 3;
	}

	.realestate-filter > .filter-budget-group {
		grid-column: span 6;
	}

	.filter-advanced-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.filter-advanced-grid .filter-range-group--area_range {
		grid-column: span 2;
	}

	.filter-advanced-grid .filter-feature-group {
		grid-column: auto;
	}

	.realestate-filter .filter-field--sort {
		grid-column: span 3;
	}

	.realestate-filter-actions {
		grid-column: span 9;
		display: flex;
		justify-content: start;
	}

	.realestate-filter-actions button {
		min-width: 220px;
	}

	.property-grid,
	.realestate-featured-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;
	}

	.property-hero-grid {
		grid-template-columns: minmax(0, 1fr) 380px;
		align-items: start;
	}

	.content-grid {
		grid-template-columns: minmax(0, 1fr) 340px;
		align-items: start;
	}

	.action-row {
		grid-template-columns: 1fr;
	}

	.property-sticky-card {
		position: sticky;
		top: 92px;
	}

	.property-single {
		padding-bottom: 0;
	}

	.mobile-contact-bar {
		display: none;
	}

}

/* Keep every filter popover inside the visual viewport on phones and tablets. */
@media (max-width: 919px) {
	html.has-filter-panel-open .property-browser-head,
	html.has-filter-panel-open .landing-search-section {
		position: relative;
		z-index: 1200;
	}

	html.has-filter-panel-open .realestate-filter {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.filter-term-panel,
	.filter-feature-group .filter-term-panel,
	.filter-budget-group .budget-filter-panel {
		position: fixed;
		z-index: 1201;
		inset-block-start: auto;
		inset-block-end: max(10px, env(safe-area-inset-bottom));
		inset-inline: 10px;
		box-sizing: border-box;
		width: auto;
		max-width: none;
		max-height: calc(100vh - 20px);
		max-height: calc(100dvh - 20px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
		overflow: hidden;
		overscroll-behavior: contain;
	}

	.realestate-filter .filter-panel-backdrop:not([hidden]) {
		display: block;
		z-index: 1200;
	}

	.term-filter-list,
	.feature-filter-list {
		max-height: none;
	}
}

/* Keep desktop popovers anchored to their field without clipping at viewport edges. */
@media (min-width: 920px) {
	.property-browser-head:has(.realestate-filter [data-filter-popover][open]),
	.landing-search-section:has(.realestate-filter [data-filter-popover][open]) {
		position: relative;
		z-index: 100;
	}

	.realestate-filter:has([data-filter-popover][open]) {
		position: relative;
		z-index: 101;
	}

	.filter-term-panel {
		max-height: min(280px, var(--filter-panel-max-height, 280px));
		overflow: hidden;
	}

	.filter-popover--above > .filter-term-panel {
		inset-block-start: auto;
		inset-block-end: calc(100% + 8px);
	}

	.filter-budget-group .budget-filter-panel {
		grid-template-rows: auto auto 52px 28px auto auto;
		gap: 6px;
		max-height: min(310px, var(--filter-panel-max-height, 310px));
		overflow: auto;
		padding: 10px;
	}

	.budget-filter-panel > input[type="hidden"] {
		display: none;
	}

	.budget-filter-panel .filter-panel-header {
		padding-bottom: 6px;
	}

	.budget-filter-panel .budget-histogram {
		height: 52px;
	}

	.budget-filter-panel .budget-slider {
		height: 28px;
		margin-top: -14px;
	}

	.budget-filter-panel .budget-value-inputs > label {
		gap: 3px;
	}

	.realestate-filter .budget-filter-panel .budget-value-control input {
		min-height: 38px;
	}

	.budget-filter-panel .filter-panel-actions {
		padding-top: 6px;
	}

	.budget-filter-panel .filter-panel-actions button {
		min-height: 36px;
	}
}

@media (min-width: 680px) {
	.footer-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
		gap: 30px;
	}

	.footer-brand {
		grid-column: auto;
	}

	.footer-navigation,
	.footer-contact {
		border-top: 0;
		padding-top: 0;
	}

	.footer-contact {
		grid-column: 1 / -1;
		border-top: 1px solid rgba(255, 255, 255, 0.11);
		padding-top: 22px;
	}

	.footer-contact-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.footer-bottom {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}
}

/* Articles and news. */
.landing-articles {
	background: #f5f7f6;
}

.landing-articles-grid,
.articles-archive-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 18px;
}

.landing-article-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #dce3e1;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(25, 45, 41, 0.06);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.landing-article-card:hover {
	border-color: #aebfbb;
	box-shadow: 0 12px 30px rgba(25, 45, 41, 0.11);
	transform: translateY(-2px);
}

.landing-article-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #e8eeec;
}

.landing-article-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.landing-article-card:hover .landing-article-card__image {
	transform: scale(1.025);
}

.landing-article-card__body {
	display: flex;
	min-height: 220px;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.landing-article-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 6px 12px;
	margin-bottom: 10px;
	color: #65736f;
	font-size: 0.78rem;
}

.landing-article-card__meta span {
	color: #9a6822;
	font-weight: 700;
}

.landing-article-card h3 {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.55;
}

.landing-article-card h3 a {
	color: #172724;
	text-decoration: none;
}

.landing-article-card h3 a:hover,
.landing-article-card h3 a:focus-visible {
	color: var(--primary);
}

.landing-article-card__body > p {
	margin: 10px 0 18px;
	color: #5d6b68;
	font-size: 0.9rem;
	line-height: 1.8;
}

.landing-article-card__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 7px;
	margin-top: auto;
	color: var(--primary);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.landing-article-card__link:hover,
.landing-article-card__link:focus-visible {
	color: #9a6822;
}

.articles-page-head > .container {
	display: grid;
	gap: 6px;
}

.articles-page-head span {
	color: #d0a45d;
	font-size: 0.82rem;
	font-weight: 800;
}

.articles-page-head p {
	max-width: 650px;
	margin: 0;
}

.articles-page .container {
	min-width: 0;
}

.articles-empty {
	margin: 0;
	border: 1px dashed #bdcac7;
	border-radius: 8px;
	padding: 30px 18px;
	background: #f7f9f8;
	color: #5d6b68;
	text-align: center;
}

.articles-pagination {
	margin-top: 30px;
}

.articles-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.articles-pagination a,
.articles-pagination span {
	display: inline-flex;
	min-width: 40px;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	border: 1px solid #cfd9d6;
	border-radius: 6px;
	background: #fff;
	color: #253632;
	text-decoration: none;
}

.articles-pagination .current,
.articles-pagination a:hover,
.articles-pagination a:focus-visible {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
}

.single-article-hero {
	padding: 30px 0 66px;
	background: #eaf1ef;
	border-bottom: 1px solid #dbe5e2;
}

.single-article-hero__inner {
	max-width: 900px;
}

.single-article-back {
	display: inline-flex;
	align-items: center;
	margin-bottom: 22px;
	color: var(--primary);
	font-weight: 750;
	text-decoration: none;
}

.single-article-back:hover,
.single-article-back:focus-visible {
	color: #9a6822;
}

.single-article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-bottom: 14px;
	color: #66736f;
	font-size: 0.86rem;
}

.single-article-category {
	border-radius: 5px;
	padding: 5px 9px;
	background: #fff;
	color: #9a6822;
	font-weight: 800;
	text-decoration: none;
}

.single-article-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.single-article-meta__item .lucide-icon {
	width: 16px;
	height: 16px;
}

.single-article-head h1 {
	max-width: 860px;
	margin: 0;
	color: #172724;
	font-size: 1.95rem;
	line-height: 1.45;
}

.single-article-head p {
	max-width: 760px;
	margin: 14px 0 0;
	color: #586763;
	font-size: 1rem;
	line-height: 1.8;
}

.single-article-cover {
	overflow: hidden;
	max-width: 1120px;
	margin-top: -36px;
	margin-bottom: 0;
	border-radius: 8px;
	aspect-ratio: 16 / 10;
	background: #e8eeec;
	box-shadow: 0 16px 38px rgba(25, 45, 41, 0.14);
}

.single-article-cover__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-article-layout {
	display: grid;
	gap: 30px;
	padding-block: 38px 54px;
}

.single-article-main {
	min-width: 0;
}

.single-article-content {
	color: #283936;
	font-size: 1rem;
	line-height: 2;
}

.single-article-content > :first-child {
	margin-top: 0;
}

.single-article-content > :last-child {
	margin-bottom: 0;
}

.single-article-content > p:first-child {
	border-inline-start: 3px solid #c69b51;
	padding-inline-start: 16px;
	color: #30443f;
	font-size: 1.08rem;
	font-weight: 600;
}

.single-article-content h2,
.single-article-content h3 {
	margin: 34px 0 12px;
	color: #172724;
	font-size: 1.35rem;
	line-height: 1.5;
}

.single-article-content p,
.single-article-content li {
	max-width: 74ch;
}

.single-article-content img {
	height: auto;
	border-radius: 8px;
}

.single-article-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 34px;
	border-top: 1px solid #dce3e1;
	padding-top: 20px;
}

.single-article-footer > a {
	color: var(--primary);
	font-weight: 800;
	text-decoration: none;
}

.single-article-tags {
	color: #63706d;
}

.single-article-tags a {
	color: var(--primary);
}

.single-article-aside {
	display: grid;
	align-self: start;
	align-content: start;
	gap: 14px;
}

.single-article-share {
	border: 1px solid #d7e1de;
	border-radius: 8px;
	padding: 18px;
	background: #f7f9f8;
}

.single-article-aside__heading {
	display: flex;
	align-items: center;
	gap: 9px;
}

.single-article-aside__heading .lucide-icon {
	width: 20px;
	height: 20px;
	color: var(--primary);
}

.single-article-aside__heading h2 {
	margin: 0;
	font-size: 1.05rem;
}

.single-article-share > p {
	margin: 9px 0 14px;
	color: #62706c;
	font-size: 0.88rem;
	line-height: 1.7;
}

.single-article-share__actions {
	display: grid;
	gap: 8px;
}

.single-article-share__button,
.single-article-share__whatsapp {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid #bfd0cc;
	border-radius: 6px;
	padding: 9px 12px;
	background: #fff;
	color: #1e3732;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.single-article-share__button:hover,
.single-article-share__button:focus-visible {
	border-color: var(--primary);
	color: var(--primary);
}

.single-article-share__whatsapp {
	border-color: #087f45;
	background: #087f45;
	color: #fff;
}

.single-article-share__button .lucide-icon,
.single-article-share__whatsapp .lucide-icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.single-article-property-link {
	display: grid;
	gap: 4px;
	border-radius: 8px;
	padding: 20px;
	background: var(--primary-strong);
	color: #fff;
	text-decoration: none;
}

.single-article-property-link span {
	color: #d9b56d;
	font-size: 0.78rem;
	font-weight: 800;
}

.single-article-property-link strong {
	font-size: 1rem;
	line-height: 1.5;
}

.single-article-property-link small {
	color: #d6e0dd;
	font-size: 0.8rem;
	line-height: 1.65;
}

.single-article-property-link:hover,
.single-article-property-link:focus-visible {
	background: var(--primary);
}

.single-article-related {
	padding-block: 46px 54px;
	background: #f5f7f6;
	border-top: 1px solid #e1e7e5;
}

@media (min-width: 680px) {
	.landing-articles-grid,
	.articles-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-article-hero {
		padding-block: 48px 86px;
	}

	.single-article-head h1 {
		font-size: 2.55rem;
		line-height: 1.35;
	}

	.single-article-cover {
		margin-top: -52px;
		aspect-ratio: 16 / 8;
	}

	.single-article-layout {
		padding-block: 50px 66px;
	}
}

@media (min-width: 1020px) {
	.landing-articles-grid,
	.articles-archive-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 22px;
	}

	.single-article-cover {
		aspect-ratio: 16 / 7;
	}

	.single-article-layout {
		grid-template-columns: 260px minmax(0, 760px);
		grid-template-areas: "aside article";
		justify-content: center;
		gap: 54px;
	}

	.single-article-main {
		grid-area: article;
	}

	.single-article-aside {
		position: sticky;
		top: 92px;
		grid-area: aside;
	}

	.single-article-content {
		font-size: 1.06rem;
		line-height: 2.08;
	}
}

@media (min-width: 920px) {
	.footer-grid {
		grid-template-columns: minmax(240px, 0.88fr) minmax(360px, 1.35fr) minmax(250px, 0.95fr);
		gap: 38px;
	}

	.footer-brand {
		grid-column: auto;
		align-items: center;
		border-inline-end: 1px solid rgba(255, 255, 255, 0.14);
		padding-inline-end: 34px;
		text-align: center;
	}

	.footer-tagline {
		text-align: center;
	}

	.footer-contact {
		grid-column: auto;
		border-top: 0;
		padding-top: 0;
	}

	.footer-contact-list {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (min-width: 1160px) {
	.property-card-image {
		aspect-ratio: 1.55;
	}

	.section,
	.page-head {
		padding: 34px 0;
	}
}

/* Complete single-property experience. */
.lucide-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	vertical-align: middle;
}

.property-single {
	padding-bottom: calc(132px + env(safe-area-inset-bottom));
	background: #fff;
}

.property-single .property-hero {
	padding: 14px 0 22px;
	border-bottom: 1px solid var(--line);
	background: #f2f5f2;
}

.property-back-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 40px;
	margin-bottom: 10px;
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 900;
}

.property-back-link:hover {
	color: var(--primary-strong);
}

.property-back-link .lucide-icon {
	width: 16px;
	height: 16px;
}

.property-single .property-hero-grid {
	display: grid;
	gap: 18px;
}

.property-single .property-gallery {
	position: relative;
	min-width: 0;
}

.property-gallery-stage {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	min-height: 0;
	border: 0;
	border-radius: var(--radius);
	background: #dfe6e2;
	padding: 0;
	box-shadow: 0 12px 30px rgba(21, 26, 31, 0.1);
}

.property-gallery-stage:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--primary) 35%, transparent);
	outline-offset: 3px;
}

.property-single .gallery-main {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius);
	object-fit: cover;
	background: #dfe6e2;
}

.property-single .gallery-placeholder {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 10px;
	min-height: 280px;
	color: var(--muted);
	font-weight: 900;
}

.property-single .gallery-placeholder .lucide-icon {
	width: 32px;
	height: 32px;
}

.property-single .gallery-count {
	position: absolute;
	inset-block-start: auto;
	inset-block-end: 10px;
	inset-inline-start: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: rgba(21, 26, 31, 0.78);
	color: #fff;
	padding: 5px 10px;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.2;
	backdrop-filter: blur(8px);
}

.property-single .gallery-count .lucide-icon {
	width: 15px;
	height: 15px;
}

.gallery-open-action {
	position: absolute;
	inset-block-start: 10px;
	inset-inline-end: 10px;
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: var(--ink);
	box-shadow: 0 6px 16px rgba(21, 26, 31, 0.16);
}

.gallery-open-action .lucide-icon {
	width: 17px;
	height: 17px;
}

.property-single .gallery-thumbs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	margin-top: 8px;
	padding: 2px 1px 5px;
	scrollbar-width: thin;
	scroll-snap-type: inline proximity;
}

.property-single .gallery-thumbs button {
	flex: 0 0 72px;
	min-height: 0;
	border: 2px solid transparent;
	border-radius: var(--radius);
	background: transparent;
	padding: 2px;
	scroll-snap-align: start;
}

.property-single .gallery-thumbs button[aria-selected='true'] {
	border-color: var(--primary);
}

.property-single .gallery-thumbs img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 5px;
	object-fit: cover;
}

.property-single .property-summary {
	display: grid;
	align-content: start;
	gap: 12px;
	min-width: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.property-single .property-eyebrow-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
}

.property-reference,
.property-featured-label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: 1px solid rgba(37, 78, 111, 0.2);
	border-radius: 999px;
	background: #eef4f8;
	color: var(--blue);
	padding: 4px 9px;
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1.3;
}

.property-featured-label {
	border-color: rgba(184, 133, 53, 0.28);
	background: #fff7e9;
	color: #7d551c;
}

.property-reference .lucide-icon {
	width: 14px;
	height: 14px;
}

.property-single .property-summary h1 {
	margin: 0;
	color: var(--ink);
	font-size: 1.55rem;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.property-summary-location {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	margin: -2px 0 0;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 800;
}

.property-summary-location .lucide-icon {
	width: 17px;
	height: 17px;
	margin-top: 5px;
	color: var(--primary);
}

.property-summary-location a,
.property-single .property-meta-chips a {
	color: inherit;
	text-decoration: none;
}

.property-summary-location a:hover,
.property-single .property-meta-chips a:hover {
	color: var(--primary-strong);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.property-single .property-meta-chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.property-single .property-meta-chips li {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	padding: 4px 9px;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.35;
}

.property-single .property-meta-chips .lucide-icon {
	width: 14px;
	height: 14px;
	color: var(--primary);
}

.property-price-block {
	display: grid;
	gap: 2px;
	border-block: 1px solid var(--line);
	padding-block: 12px;
}

.property-price-block > span {
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 900;
}

.property-price-block > strong {
	color: var(--primary-strong);
	font-size: 1.45rem;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.property-single .property-key-specs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.property-single .property-key-specs li {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	border: 0;
	border-inline-start: 2px solid #c9ddd7;
	border-radius: 0;
	background: transparent;
	padding: 3px 8px;
}

.property-single .property-key-specs .lucide-icon {
	width: 19px;
	height: 19px;
	color: var(--primary);
}

.property-single .property-key-specs li > span {
	display: grid;
	gap: 0;
	min-width: 0;
}

.property-single .property-key-specs strong,
.property-single .property-key-specs small {
	display: block;
	min-width: 0;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.property-single .property-key-specs strong {
	color: var(--ink);
	font-size: 0.94rem;
}

.property-single .property-key-specs small {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 900;
}

.property-primary-actions {
	position: fixed;
	inset-inline: 0;
	inset-block-end: 0;
	z-index: 80;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
	border-top: 1px solid rgba(21, 26, 31, 0.13);
	background: rgba(255, 255, 255, 0.96);
	padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
	box-shadow: 0 -10px 28px rgba(21, 26, 31, 0.13);
	backdrop-filter: blur(14px);
}

.property-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 0;
	min-height: 46px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	padding: 8px 7px;
	font: inherit;
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1.2;
	cursor: pointer;
}

.property-action .lucide-icon {
	width: 17px;
	height: 17px;
}

.property-action--whatsapp {
	border-color: #128c4a;
	background: #128c4a;
	color: #fff;
}

.property-action--whatsapp:hover {
	border-color: #0e783e;
	background: #0e783e;
	color: #fff;
}

.property-action--call {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
}

.property-action--call:hover {
	border-color: #183e5d;
	background: #183e5d;
	color: #fff;
}

.property-single .property-action--favorite,
.property-single .property-action--share {
	border-color: var(--line);
	background: #fff;
	color: var(--ink);
}

.property-single .property-action--favorite:hover,
.property-single .property-action--favorite.is-favorite,
.property-single .property-action--share:hover {
	border-color: rgba(184, 133, 53, 0.5);
	background: #fff8ec;
	color: #7b4f13;
}

.property-action--favorite.is-favorite .lucide-heart {
	fill: currentColor;
}

.property-card-favorite.is-favorite .lucide-heart {
	fill: currentColor;
}

.property-contact-unavailable {
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--muted);
	padding: 9px 11px;
	font-size: 0.82rem;
}

.property-section-nav {
	position: sticky;
	inset-block-start: 68px;
	z-index: 40;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 5px 16px rgba(21, 26, 31, 0.04);
	backdrop-filter: blur(12px);
}

.property-section-nav .container {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	padding-block: 8px;
	scrollbar-width: none;
}

.property-section-nav .container::-webkit-scrollbar {
	display: none;
}

.property-detail-tabs button {
	display: inline-flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 106px;
	min-height: 44px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: transparent;
	color: var(--muted);
	padding: 7px 10px;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1.35;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.property-detail-tabs button .lucide-icon {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.property-detail-tabs button:hover,
.property-detail-tabs button.is-active,
.property-detail-tabs button[aria-selected='true'] {
	border-color: #d4e1dd;
	background: #e9f3f0;
	color: var(--primary-strong);
}

.property-detail-tabs button[aria-selected='true'] {
	box-shadow: inset 0 -3px 0 var(--accent);
}

.property-detail-tabs button:focus-visible {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent), inset 0 -3px 0 var(--accent);
	outline: none;
}

@media (max-width: 480px) {
	.property-section-nav .container {
		overflow-x: visible;
	}

	.property-detail-tabs button {
		flex-direction: column;
		gap: 3px;
		min-width: 0;
		min-height: 58px;
		padding: 6px 3px;
		font-size: 0.74rem;
		white-space: normal;
	}

	.property-detail-tabs button .lucide-icon {
		width: 17px;
		height: 17px;
	}
}

.property-body {
	background: #fff;
}

.property-detail-flow {
	display: grid;
	gap: 0;
}

.property-tab-panel,
[data-property-tab-companion] {
	min-width: 0;
}

.property-tab-panel[hidden],
[data-property-tab-companion][hidden],
[data-property-tab-group][hidden] {
	display: none !important;
}

.property-tab-panel.is-entering,
[data-property-tab-companion].is-entering {
	animation: property-tab-enter 0.24s ease both;
}

@keyframes property-tab-enter {
	from {
		opacity: 0;
		transform: translateY(7px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.property-detail-tabs button {
		transition: none;
	}

	.property-tab-panel.is-entering,
	[data-property-tab-companion].is-entering {
		animation: none;
	}
}

.property-overview-layout {
	display: grid;
	gap: 0;
}

.property-page-section {
	min-width: 0;
	padding-block: 24px;
	border-bottom: 1px solid var(--line);
	scroll-margin-top: 124px;
}

.property-page-section__heading {
	display: grid;
	gap: 2px;
	margin-bottom: 14px;
}

.property-page-section__heading > span,
.property-page-section__heading > div > span,
.section-kicker {
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 900;
}

.property-page-section__heading h2,
.property-page-section__heading p {
	margin: 0;
}

.property-page-section__heading h2 {
	color: var(--ink);
	font-size: 1.22rem;
	line-height: 1.4;
}

.property-page-section__heading p {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.88rem;
}

.property-page-section__heading--split {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.property-page-section__heading--split > div {
	display: grid;
	gap: 2px;
}

.property-section-count {
	flex: 0 0 auto;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface-soft);
	color: var(--muted);
	padding: 5px 10px;
	font-size: 0.78rem;
	white-space: nowrap;
}

.property-description-section .entry-content {
	color: #2f373a;
}

.property-description-section .entry-content > :first-child {
	margin-top: 0;
}

.property-description-section .entry-content > :last-child {
	margin-bottom: 0;
}

.property-description-section .entry-content h2,
.property-description-section .entry-content h3 {
	margin: 22px 0 7px;
	color: var(--ink);
	font-size: 1.05rem;
	line-height: 1.45;
}

.property-description-section .entry-content p,
.property-description-section .entry-content ul {
	margin-block: 0 12px;
}

.property-description-section .entry-content ul {
	padding-inline-start: 20px;
}

.property-detail-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	border-block: 1px solid var(--line);
}

.property-detail-list > div {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-areas:
		"icon term"
		"icon value";
	gap: 0 8px;
	min-width: 0;
	padding: 10px 4px;
}

.property-detail-list .lucide-icon {
	grid-area: icon;
	align-self: center;
	width: 18px;
	height: 18px;
	color: var(--primary);
}

.property-detail-list dt,
.property-detail-list dd {
	min-width: 0;
	margin: 0;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.property-detail-list dt {
	grid-area: term;
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 900;
}

.property-detail-list dd {
	grid-area: value;
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 900;
}

.property-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.property-feature-list li {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	color: var(--ink);
	font-size: 0.86rem;
	font-weight: 800;
}

.property-feature-list .lucide-icon {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #e3f4eb;
	color: var(--success);
	padding: 2px;
}

.property-single .property-offers-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
}

.property-single .property-offer-card {
	display: grid;
	align-content: start;
	gap: 12px;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 14px;
	box-shadow: 0 5px 16px rgba(21, 26, 31, 0.04);
}

.property-single .property-offer-card header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.property-offer-contact,
.property-inline-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	border: 1px solid rgba(18, 140, 74, 0.25);
	border-radius: var(--radius);
	background: #edf8f1;
	color: #0e6e3a;
	padding: 8px 12px;
	font-size: 0.84rem;
	font-weight: 900;
}

.property-offer-contact:hover {
	border-color: #128c4a;
	background: #128c4a;
	color: #fff;
}

.property-offer-contact .lucide-icon,
.property-inline-action .lucide-icon {
	width: 17px;
	height: 17px;
}

.property-single .property-boundaries-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
}

.property-single .property-boundaries-grid > div {
	display: grid;
	gap: 6px;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f8faf8;
	padding: 11px;
}

.property-single .property-boundaries-grid dt {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--primary-strong);
	font-size: 0.8rem;
	font-weight: 900;
}

.property-single .property-boundaries-grid dt .lucide-icon {
	width: 16px;
	height: 16px;
}

.property-media-layout {
	display: grid;
	gap: 0;
}

.property-media-layout > .property-tab-panel {
	min-width: 0;
}

.property-media-section {
	align-content: start;
}

.property-single .property-embed {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #dfe6e2;
}

.property-single .property-embed iframe,
.property-single .property-embed .property-embed-frame {
	display: block;
	width: 100%;
	min-height: 260px;
	border: 0;
	aspect-ratio: 16 / 10;
}

.property-single .property-video iframe[src*='tiktok.com'] {
	max-width: 430px;
	margin-inline: auto;
	aspect-ratio: 9 / 16;
	background: #fff;
}

.property-location-copy {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-bottom: 12px;
}

.property-location-copy > .lucide-icon {
	width: 19px;
	height: 19px;
	margin-top: 4px;
	color: var(--primary);
}

.property-location-copy strong,
.property-location-copy p {
	margin: 0;
}

.property-location-copy strong {
	display: block;
	color: var(--ink);
	line-height: 1.45;
}

.property-location-copy p {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.86rem;
}

.property-inline-action {
	justify-self: start;
	border-color: rgba(37, 78, 111, 0.22);
	background: #eef4f8;
	color: var(--blue);
}

.property-inline-action:hover {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
}

.similar-properties-section .section-heading > div {
	display: grid;
	gap: 2px;
}

.similar-properties-section .section-heading h2 {
	margin: 0;
}

.property-gallery-dialog {
	width: 100vw;
	max-width: none;
	height: 100vh;
	max-height: none;
	margin: 0;
	border: 0;
	background: rgba(10, 13, 15, 0.96);
	color: #fff;
	padding: 0;
}

.property-gallery-dialog::backdrop {
	background: rgba(10, 13, 15, 0.96);
}

html.has-gallery-dialog {
	overflow: hidden;
}

.property-gallery-dialog__inner {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	width: 100%;
	height: 100%;
	padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
}

.property-gallery-dialog__inner > header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.property-gallery-dialog__inner > header strong {
	overflow: hidden;
	font-size: 0.88rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.property-gallery-dialog__inner > header span {
	color: #c4cfcc;
	font-size: 0.8rem;
	font-weight: 900;
}

.property-gallery-dialog button {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	min-height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding: 0;
}

.property-gallery-dialog button:hover {
	background: rgba(255, 255, 255, 0.2);
}

.property-gallery-viewer {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	min-height: 0;
}

.property-gallery-viewer img {
	width: 100%;
	max-height: calc(100vh - 92px);
	object-fit: contain;
}

.property-gallery-viewer > button {
	position: relative;
	z-index: 2;
}

@media (max-width: 379px) {
	.property-primary-actions {
		gap: 5px;
		padding-inline: 8px;
	}

	.property-action {
		gap: 3px;
		padding-inline: 4px;
		font-size: 0.7rem;
	}

	.property-action .lucide-icon {
		width: 16px;
		height: 16px;
	}
}

@media (min-width: 680px) {
	.property-single .property-hero {
		padding: 18px 0 28px;
	}

	.property-single .property-hero-grid {
		gap: 22px;
	}

	.property-single .gallery-main {
		aspect-ratio: 16 / 10;
	}

	.property-single .property-summary h1 {
		font-size: 2rem;
	}

	.property-price-block > strong {
		font-size: 1.65rem;
	}

	.property-page-section {
		padding-block: 30px;
	}

	.property-page-section__heading h2 {
		font-size: 1.35rem;
	}

	.property-feature-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.property-single .property-offers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.property-media-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}

	.property-media-layout--single {
		grid-template-columns: minmax(0, 1fr);
	}

	.property-media-layout > .property-page-section,
	.property-media-layout > .property-tab-panel > .property-page-section {
		border-bottom: 0;
	}

	.property-media-layout {
		border-bottom: 1px solid var(--line);
	}

	.property-gallery-dialog__inner {
		padding-inline: 24px;
	}

	.property-gallery-viewer {
		gap: 16px;
	}
}

@media (min-width: 920px) {
	.property-single {
		padding-bottom: 0;
	}

	.property-single .property-hero {
		padding-bottom: 34px;
	}

	.property-single .property-hero-grid {
		grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.72fr);
		align-items: start;
		gap: 30px;
	}

	.property-single .property-summary {
		position: sticky;
		inset-block-start: 92px;
		padding-block: 8px;
	}

	.property-single .property-summary h1 {
		font-size: 1.95rem;
	}

	.property-primary-actions {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border: 0;
		background: transparent;
		padding: 2px 0 0;
		box-shadow: none;
		backdrop-filter: none;
	}

	.property-action {
		min-height: 44px;
		font-size: 0.82rem;
	}

	.property-section-nav {
		inset-block-start: 76px;
	}

	.property-section-nav .container {
		justify-content: center;
		padding-block: 8px;
	}

	.property-detail-tabs button {
		padding-inline: 13px;
		font-size: 0.84rem;
	}

	.property-page-section {
		scroll-margin-top: 132px;
	}

	.property-overview-layout {
		grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
		gap: 40px;
		border-bottom: 1px solid var(--line);
	}

	.property-overview-layout > .property-page-section {
		border-bottom: 0;
	}

	.property-description-section {
		padding-inline-end: 8px;
	}

	.property-specifications-section {
		border-inline-start: 1px solid var(--line);
		padding-inline-start: 32px;
	}

	.property-single .property-offers-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.property-single .property-boundaries-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.property-gallery-dialog__inner {
		padding-inline: 38px;
	}
}

@media (min-width: 1160px) {
	.property-single .property-hero-grid {
		grid-template-columns: minmax(0, 1.65fr) 390px;
		gap: 38px;
	}

	.property-single .gallery-thumbs button {
		flex-basis: 86px;
	}

	.property-detail-flow {
		max-width: 1080px;
		margin-inline: auto;
	}
}

/* Data-driven homepage experience. */
.landing-hero {
	min-height: 380px;
}

.landing-hero-inner {
	padding-block: 48px 30px;
}

.landing-hero h1 {
	font-size: 2.1rem;
}

.landing-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.landing-section-head > div {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.landing-section-head span {
	color: var(--accent);
	font-size: 0.76rem;
	font-weight: 900;
}

.landing-section-head h2 {
	margin: 0;
	color: var(--ink);
	font-size: 1.28rem;
	line-height: 1.35;
}

.landing-section-head > a {
	flex: 0 0 auto;
	color: var(--primary);
	font-size: 0.84rem;
	font-weight: 900;
}

.landing-quick-search {
	border-bottom: 1px solid var(--line);
	background: var(--surface-soft);
	padding: 22px 0 24px;
}

.home-property-request-form label {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.home-property-request-form label > span {
	color: var(--muted);
	font-size: 0.73rem;
	font-weight: 900;
}

.home-property-request-form select {
	width: 100%;
	min-width: 0;
	height: 46px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	padding: 0 10px;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 800;
}

.home-property-request-form select:focus {
	border-color: var(--primary);
	outline: 2px solid color-mix(in srgb, var(--primary) 16%, transparent);
	outline-offset: 1px;
}

.landing-popular-locations {
	background: #fff;
}

.landing-location-groups {
	display: grid;
	gap: 24px;
}

.landing-location-group {
	min-width: 0;
}

.landing-location-group h3 {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: 0.82rem;
}

.landing-location-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 12px;
	border-top: 1px solid var(--line);
}

.landing-location-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
	min-height: 44px;
	border-bottom: 1px solid var(--line);
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 800;
}

.landing-location-links a:hover,
.landing-location-links a:focus-visible {
	color: var(--primary-strong);
}

.landing-location-links a span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.landing-location-links a strong {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	min-width: 25px;
	height: 25px;
	border-radius: 999px;
	background: #edf4f1;
	color: var(--primary-strong);
	font-size: 0.73rem;
}

.landing-stats {
	background: #233735;
	color: #fff;
	padding: 20px 0;
}

.landing-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-stats-grid > div {
	display: grid;
	place-items: center;
	gap: 1px;
	min-height: 74px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.landing-stats-grid > div:nth-child(odd) {
	border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-stats-grid > div:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.landing-stats-grid strong {
	color: #fff;
	font-size: 1.55rem;
	line-height: 1.2;
}

.landing-stats-grid span {
	color: #c7d4cf;
	font-size: 0.76rem;
	font-weight: 800;
}

.landing-featured {
	background: #fff;
}

.landing-property-rail {
	grid-template-columns: none;
	grid-auto-flow: column;
	grid-auto-columns: minmax(270px, 84vw);
	overflow-x: auto;
	padding-block-end: 10px;
	scroll-snap-type: inline mandatory;
	scrollbar-width: thin;
}

.landing-property-rail > .property-card {
	scroll-snap-align: start;
}

.landing-property-request {
	border-top: 3px solid var(--accent);
	background: #202e33;
	color: #fff;
	padding: 28px 0;
}

.landing-property-request-inner {
	display: grid;
	gap: 22px;
}

.landing-property-request-copy {
	display: grid;
	align-content: start;
	gap: 7px;
}

.landing-property-request-copy > span {
	color: #e2b765;
	font-size: 0.78rem;
	font-weight: 900;
}

.landing-property-request-copy h2,
.landing-property-request-copy p {
	margin: 0;
}

.landing-property-request-copy h2 {
	color: #fff;
	font-size: 1.45rem;
	line-height: 1.35;
}

.landing-property-request-copy p {
	max-width: 560px;
	color: #c9d5d8;
	font-size: 0.9rem;
}

.home-property-request-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding-top: 18px;
}

.home-property-request-form label > span {
	color: #bdcbd0;
}

.home-property-request-form input,
.home-property-request-form select {
	width: 100%;
	min-height: 44px;
	border: 1px solid #536268;
	border-radius: 6px;
	background: #f9fbfb;
	color: #172322;
	font: inherit;
}

.home-property-request-form input:focus,
.home-property-request-form select:focus {
	border-color: #e2b765;
	box-shadow: 0 0 0 2px rgba(226, 183, 101, 0.2);
	outline: 0;
}

.home-property-request-form button {
	grid-column: 1 / -1;
	min-height: 48px;
	border: 1px solid #128c4a;
	border-radius: 6px;
	background: #128c4a;
	color: #fff;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.home-property-request-form button:hover,
.home-property-request-form button:focus-visible {
	border-color: #0e783e;
	background: #0e783e;
}

.home-property-request-form button:disabled {
	border-color: #55716a;
	background: #55716a;
	cursor: wait;
}

.home-property-request-form .hp-field {
	position: absolute !important;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.home-property-request-status {
	grid-column: 1 / -1;
	min-height: 22px;
	margin: 0;
	color: #c9d5d8;
	font-size: 0.86rem;
	font-weight: 700;
}

.home-property-request-status:empty {
	display: none;
}

.home-property-request-status.is-success {
	color: #9fe0bc;
}

.home-property-request-status.is-error {
	color: #ffb5ae;
}

@media (max-width: 560px) {
	.home-property-request-form {
		grid-template-columns: minmax(0, 1fr);
	}
}

.landing-personalized {
	background: #fff;
}

.home-personalized-block + .home-personalized-block {
	border-top: 1px solid var(--line);
	margin-top: 26px;
	padding-top: 26px;
}

.landing-personalized[hidden],
.home-personalized-block[hidden] {
	display: none;
}

@media (min-width: 680px) {
	.landing-hero {
		min-height: 420px;
	}

	.landing-hero h1 {
		font-size: 2.65rem;
	}

	.landing-location-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px;
	}

	.landing-stats-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.landing-stats-grid > div {
		border-bottom: 0;
		border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
	}

	.landing-stats-grid > div:last-child {
		border-inline-end: 0;
	}

	.landing-property-rail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-flow: row;
		grid-auto-columns: auto;
		overflow-x: visible;
		padding-block-end: 0;
	}
}

@media (min-width: 920px) {
	.landing-hero {
		min-height: 470px;
	}

	.landing-hero-inner {
		padding-block: 76px 48px;
	}

	.landing-hero h1 {
		font-size: 3rem;
	}

	.landing-property-rail {
		grid-template-columns: repeat(auto-fit, minmax(260px, 278px));
		justify-content: center;
		gap: 16px;
	}

	.landing-property-request {
		padding: 38px 0;
	}

	.landing-property-request-inner {
		grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
		align-items: center;
		gap: 48px;
	}

	.home-property-request-form {
		border-top: 0;
		border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
		padding-top: 0;
		padding-inline-start: 34px;
	}
}

/* Public information pages. */
.public-page {
	background: #fff;
}

.public-page-hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
	background: var(--surface-soft);
}

.public-page-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	min-height: 280px;
	padding-block: 48px;
}

.public-page-hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: 2.2rem;
	line-height: 1.25;
}

.public-page-hero__lead {
	max-width: 700px;
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 1.05rem;
	font-weight: 700;
}

.public-page-hero--image {
	min-height: 380px;
	border-bottom: 0;
	background-color: #123d37;
	background-image: linear-gradient(90deg, rgba(9, 35, 31, 0.5), rgba(9, 35, 31, 0.9)), var(--public-page-hero-image);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.public-page-hero--image .public-page-hero__inner {
	min-height: 380px;
}

.public-page-hero--image h1,
.public-page-hero--image .public-page-hero__lead {
	color: #fff;
}

.public-page-hero--image .public-page-hero__lead {
	color: #e7eeec;
}

.public-page-kicker {
	margin: 0 0 7px;
	color: var(--accent);
	font-size: 0.84rem;
	font-weight: 900;
}

.public-page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 22px;
}

.public-page-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.public-page-hero--image .button-secondary {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.public-page-hero--image .button-secondary:hover,
.public-page-hero--image .button-secondary:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--primary-strong);
}

.public-page-section {
	padding-block: 48px;
}

.public-page-section--soft {
	background: var(--surface-soft);
}

.public-page-heading {
	max-width: 690px;
	margin-bottom: 24px;
}

.public-page-heading h2,
.public-page-copy h2,
.contact-office__details h2 {
	margin: 0;
	font-size: 1.7rem;
	line-height: 1.35;
}

.public-page-heading > p:last-child,
.public-page-copy p,
.contact-office__details > p {
	color: var(--muted);
}

.about-intro,
.about-process-layout,
.contact-office,
.terms-layout {
	display: grid;
	gap: 28px;
}

.public-page-copy p {
	margin: 12px 0 0;
	font-weight: 700;
}

.about-registration {
	align-self: start;
	border: 1px solid var(--line);
	border-top: 3px solid var(--accent);
	border-radius: var(--radius);
	background: #fff;
	padding: 22px;
}

.about-registration__icon,
.contact-channel__icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 7px;
	background: var(--surface-soft);
	color: var(--primary);
}

.about-registration h2 {
	margin: 12px 0 16px;
	font-size: 1.2rem;
}

.about-registration dl,
.contact-office__details dl {
	display: grid;
	gap: 10px;
	margin: 0;
}

.about-registration dl > div,
.contact-office__details dl > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid var(--line);
	padding-top: 10px;
}

.about-registration dt,
.contact-office__details dt {
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 800;
}

.about-registration dd,
.contact-office__details dd {
	margin: 0;
	font-weight: 900;
}

.about-values {
	display: grid;
	gap: 12px;
}

.about-contact-numbers {
	display: grid;
	gap: 12px;
}

.about-contact-number {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 18px;
}

.about-contact-number__icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: var(--radius);
	background: var(--surface-soft);
	color: var(--primary);
}

.about-contact-number > div {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.about-contact-number small {
	color: var(--muted);
	font-weight: 800;
}

.about-contact-number strong {
	font-size: 1.08rem;
	overflow-wrap: anywhere;
}

.about-contact-number__actions {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.about-contact-number__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	color: var(--primary);
	font-weight: 900;
}

.about-contact-number__actions a:hover,
.about-contact-number__actions a:focus-visible {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
}

.about-contact-number__actions .is-whatsapp {
	color: #0d6f43;
}

.about-value {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 20px;
}

.about-value > span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 7px;
	background: #e3f0ed;
	color: var(--primary);
}

.about-value h3 {
	margin: 14px 0 5px;
	font-size: 1.08rem;
}

.about-value p {
	margin: 0;
	color: var(--muted);
	font-size: 0.93rem;
	font-weight: 700;
}

.about-process-layout .public-page-heading {
	margin-bottom: 0;
}

.about-process {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-process li {
	position: relative;
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 14px;
	padding-bottom: 24px;
}

.about-process li:not(:last-child)::after {
	position: absolute;
	top: 36px;
	right: 17px;
	bottom: 0;
	width: 1px;
	background: var(--line);
	content: "";
}

.about-process li > span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	font-weight: 900;
}

.about-process h3,
.about-process p {
	margin: 0;
}

.about-process p {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 700;
}

.contact-channels {
	display: grid;
	gap: 10px;
}

.contact-number-card {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	min-height: 132px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 16px;
}

.contact-number-card__details {
	display: grid;
	min-width: 0;
}

.contact-number-card__details small {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
}

.contact-number-card__details strong {
	font-size: 1.08rem;
}

.contact-number-card__actions {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.contact-number-card__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 42px;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-sm);
	background: var(--surface-soft);
	color: var(--brand-deep);
	font-size: 0.82rem;
	font-weight: 900;
}

.contact-number-card__actions a.is-whatsapp {
	border-color: #128c4a;
	background: #128c4a;
	color: #fff;
}

.contact-channel {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 13px;
	min-height: 104px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 16px;
	color: var(--ink);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
	border-color: #9ebbb5;
	box-shadow: var(--shadow-soft);
	color: var(--ink);
	transform: translateY(-2px);
}

.contact-channel--whatsapp .contact-channel__icon {
	background: #e3f4eb;
	color: #0d6f43;
}

.contact-channel > span:nth-child(2) {
	display: grid;
	min-width: 0;
}

.contact-channel small,
.contact-channel em {
	color: var(--muted);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 700;
}

.contact-channel strong {
	overflow-wrap: anywhere;
	font-size: 1rem;
}

.contact-channel > .lucide-icon {
	color: #7b8682;
}

.contact-office {
	align-items: stretch;
}

.contact-office__details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.contact-office__details dl {
	width: 100%;
	margin-block: 18px 22px;
}

.contact-office__map {
	overflow: hidden;
	min-height: 320px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #dce5e1;
}

.contact-office__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	border: 0;
}

.terms-layout {
	align-items: start;
}

.terms-navigation {
	display: grid;
	gap: 2px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	padding: 16px;
}

.terms-navigation strong {
	margin-bottom: 8px;
}

.terms-navigation a {
	border-radius: 6px;
	padding: 7px 9px;
	color: #43504c;
	font-size: 0.88rem;
	font-weight: 800;
}

.terms-navigation a:hover,
.terms-navigation a:focus-visible {
	background: #fff;
	color: var(--primary);
}

.terms-content {
	display: grid;
}

.terms-content > section {
	position: relative;
	scroll-margin-top: 104px;
	border-bottom: 1px solid var(--line);
	padding: 0 0 30px;
}

.terms-content > section + section {
	padding-top: 30px;
}

.terms-content > section:last-child {
	border-bottom: 0;
}

.terms-section-number {
	display: block;
	margin-bottom: 4px;
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 900;
}

.terms-content h2 {
	margin: 0;
	font-size: 1.35rem;
}

.terms-content p,
.terms-content li {
	color: #4f5a56;
	font-weight: 700;
}

.terms-content p {
	margin: 9px 0 0;
}

.terms-content ul {
	margin: 14px 0 0;
	padding-inline-start: 20px;
}

.terms-content li + li {
	margin-top: 6px;
}

.terms-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.terms-links a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: 1px solid var(--line);
	border-radius: 7px;
	background: var(--surface-soft);
	padding: 8px 12px;
	font-size: 0.86rem;
	font-weight: 900;
}

.terms-links .lucide-icon {
	width: 15px;
	height: 15px;
	transform: rotate(180deg);
}

@media (min-width: 680px) {
	.public-page-hero__inner {
		min-height: 320px;
		padding-block: 62px;
	}

	.public-page-hero h1 {
		font-size: 2.75rem;
	}

	.public-page-section {
		padding-block: 64px;
	}

	.about-values,
	.about-contact-numbers,
	.contact-channels {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.about-contact-numbers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-channel {
		grid-template-columns: 44px minmax(0, 1fr);
		align-content: start;
		min-height: 176px;
	}

	.contact-channel > .lucide-icon {
		display: none;
	}
}

@media (min-width: 900px) {
	.public-page-hero--image,
	.public-page-hero--image .public-page-hero__inner {
		min-height: 460px;
	}

	.about-intro {
		grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
		gap: 64px;
		align-items: center;
	}

	.about-process-layout {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
		gap: 68px;
	}

	.contact-office {
		grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
		gap: 38px;
	}

	.terms-layout {
		grid-template-columns: 230px minmax(0, 1fr);
		gap: 54px;
	}

	.terms-navigation {
		position: sticky;
		top: 94px;
	}
}

@media (max-width: 420px) {
	.public-page-hero h1 {
		font-size: 1.9rem;
	}

	.public-page-actions {
		display: grid;
	}

	.public-page-actions .button {
		width: 100%;
	}

	.contact-channel {
		grid-template-columns: 40px minmax(0, 1fr) 16px;
		padding: 14px 12px;
	}

	.contact-channel__icon {
		width: 40px;
		height: 40px;
	}
}


/* Property cards v2: compact, type-aware listing cards. */
.property-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-radius: 8px;
	box-shadow: 0 5px 18px rgba(17, 24, 39, 0.06);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.property-card:hover {
	border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
	box-shadow: 0 10px 26px rgba(17, 24, 39, 0.1);
	transform: translateY(-2px);
}
.property-card-media { overflow: hidden; background: var(--surface-soft); }
.property-card .property-card-image { aspect-ratio: 1.58; min-height: 0; }
.property-card-status {
	position: absolute;
	inset-block-start: 10px;
	inset-inline-start: 10px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 6px;
	max-width: calc(100% - 20px);
	direction: rtl;
}
.property-card-reference,
.property-card-age {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 30px;
	border-radius: 999px;
	padding: 5px 9px;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}
.property-card-reference { background: rgba(23, 40, 48, 0.92); color: #fff; }
.property-card-age {
	border: 1px solid rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.94);
	color: var(--ink);
	backdrop-filter: blur(7px);
}
.property-card-age .lucide-icon { width: 14px; height: 14px; }
.property-card-media-actions {
	position: absolute;
	inset-inline-end: 10px;
	inset-block-end: 10px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 7px;
}
.property-card .property-card-favorite,
.property-card-share {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-height: 38px;
	border: 1px solid rgba(17, 24, 39, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.96);
	color: var(--ink);
	padding: 0;
	box-shadow: 0 5px 14px rgba(17, 24, 39, 0.13);
	cursor: pointer;
	backdrop-filter: blur(6px);
}
.property-card .property-card-favorite:hover,
.property-card .property-card-favorite.is-favorite,
.property-card-share:hover {
	border-color: var(--accent);
	background: #fff;
	color: var(--primary-strong);
}
.property-card .property-card-favorite .lucide-icon,
.property-card-share .lucide-icon { width: 19px; height: 19px; }
.property-card .property-card-featured-badge {
	inset-block-start: 50px;
	inset-inline-start: 10px;
}
.property-card .property-image-disclaimer {
	inset-inline-start: 10px;
	inset-inline-end: auto;
}
.property-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 14px;
}
.property-card h2,
.property-card h3 {
	min-height: 3em;
	font-size: 1.02rem;
	line-height: 1.5;
	text-align: center;
}
.property-card h2 a,
.property-card h3 a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.property-card-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	min-height: 62px;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: color-mix(in srgb, var(--surface-soft) 72%, #fff);
}
.property-card-facts > div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 8px 6px;
	text-align: center;
}
.property-card-facts > div + div { border-inline-start: 1px solid var(--line); }
.property-card-facts dt {
	color: var(--muted);
	font-size: 0.7rem;
	line-height: 1.25;
}
.property-card-facts dd {
	max-width: 100%;
	margin: 0;
	overflow: hidden;
	color: var(--ink);
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.property-card-footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 2px;
}
.property-card .price {
	display: flex;
	min-width: 0;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 5px;
}
.property-card .price span {
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 700;
}
.property-card .price strong {
	color: #d79612;
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.25;
}
.property-card-view {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 94px;
	min-height: 38px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	padding: 7px 14px;
	font-size: 0.86rem;
	font-weight: 900;
}
.property-card-view:hover {
	border-color: var(--accent);
	background: var(--surface-soft);
	color: var(--primary-strong);
}
.property-card-view .lucide-icon { width: 16px; height: 16px; }
.property-card .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
@media (max-width: 420px) {
	.property-card-status { gap: 4px; }
	.property-card-reference,
	.property-card-age {
		min-height: 28px;
		padding-inline: 7px;
		font-size: 0.67rem;
	}
	.property-card-body { gap: 10px; padding: 12px; }
	.property-card-facts dt { font-size: 0.65rem; }
	.property-card-facts dd { font-size: 0.76rem; }
	.property-card .price strong { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
	.property-card { transition: none; }
	.property-card:hover { transform: none; }
}
