/* Loads the site's own fonts as a fallback in case they aren't
   already loaded on the page. Harmless duplicate if they are. */
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@400;500;600&display=swap');
.plc-search-bar {
	all: initial;
	box-sizing: border-box;
	display: block;
	width: 100%;
	font-family: 'Barlow', sans-serif;
	color: #484848;
}
.plc-search-bar *,
.plc-search-bar *::before,
.plc-search-bar *::after {
	box-sizing: border-box;
	font-family: inherit;
}
.plc-search-form {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.plc-search-col {
	flex: 1 1 0;
	min-width: 140px;
	height: 62px;
	border-right: 1px solid #ab8a62;
	display: flex;
	align-items: center;
	position: relative;
}
.plc-search-col:last-of-type {
	border-right: none;
}
.plc-search-inner {
	position: relative;
	width: 100%;
	height: 100%;
}
.plc-search-inner input,
.plc-search-inner select {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 15px;
	color: #222222;
	padding: 0 12px;
	background: #ffffff;
	border: none;
	box-shadow: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
}
.plc-search-inner input[readonly] {
	cursor: pointer;
}
.plc-search-inner input::placeholder {
	color: #222222;
}
.plc-search-inner.cal input {
	padding-right: 36px;
}
.plc-search-clear-date {
	position: absolute;
	right: 26px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: #484848;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 4px;
}
.plc-search-clear-date:hover {
	color: #ab8a62;
}
.plc-search-inner.cal::after {
	content: '';
	display: block;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	content: "\e6b6";
	font-family: "themify";
	font-size: 15px;
	color: #ab8a62;
	line-height: 1;
}
.plc-search-inner.select::after {
	content: '';
	display: block;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	content: "\e64b";
	font-family: "themify";
	font-size: 10px;
	color: #ab8a62;
}
.plc-search-submit {
	flex: 0 0 auto;
	display: block;
	height: 62px;
	padding: 0 60px;
	background: #ab8a62;
	color: #ffffff;
	border: none;
	font-family: 'Barlow Condensed', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 24px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.plc-search-submit span {
	position: relative;
	z-index: 2;
}
.plc-search-submit:before {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 100%;
	z-index: 1;
	background: #222222;
	transition: all 0.3s ease;
}
.plc-search-submit:hover:before {
	width: 100%;
	left: 0;
	transition: width 0.3s ease;
}
@media screen and (max-width: 767px) {
	.plc-search-col {
		flex: 1 1 100%;
		border-right: none;
		border-bottom: 1px solid #ececec;
	}
	.plc-search-submit {
		width: 100%;
	}
}
/* --- Date range popover --- */
.plc-search-popover {
	all: initial;
	box-sizing: border-box;
	position: absolute;
	z-index: 2000000;
	display: none;
	width: 300px;
	background: #ffffff;
	border: 1px solid #ececec;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
	padding: 16px;
	font-family: 'Barlow', sans-serif;
	color: #484848;
}
.plc-search-popover *,
.plc-search-popover *::before,
.plc-search-popover *::after {
	box-sizing: border-box;
	font-family: inherit;
}
.plc-search-popover.plc-open {
	display: block;
}
.plc-search-popover-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: -16px -16px 10px -16px;
	padding: 14px 16px;
	background: #222;
}
.plc-search-popover-header span {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 18px;
	color: #ffffff;
	text-align: center;
	flex: 1 1 auto;
}
.plc-search-nav-btn {
	background: transparent;
	border: none;
	color: #ffffff;
	width: 26px;
	height: 26px;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.plc-search-nav-btn:hover {
	opacity: 0.8;
}
.plc-search-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	margin-bottom: 2px;
}
.plc-search-weekdays span {
	text-align: center;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 10px;
	color: #484848;
	text-transform: uppercase;
	padding: 3px 0;
	display: block;
}
.plc-search-days-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}
.plc-search-day-cell {
	aspect-ratio: 1 / 1;
	border: 1px solid #ececec;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	cursor: pointer;
	background: #ffffff;
	color: #222222;
}
.plc-search-day-cell:hover:not(.plc-past):not(.plc-empty) {
	border-color: #ab8a62;
}
.plc-search-day-cell.plc-empty {
	border: none;
	cursor: default;
}
.plc-search-day-cell.plc-past {
	background: #f8f5f0;
	color: #adadad;
	cursor: default;
}
.plc-search-day-cell.plc-selected {
	background: #ab8a62;
	border-color: #ab8a62;
	color: #ffffff;
}
.plc-search-day-cell.plc-in-range {
	background: #f3ece1;
	border-color: #e3d3ba;
}
/* --- Results popup ---
   White background, no border-radius, dark box-shadow, dark overlay
   behind it. Vertically centered but never past the viewport
   top/bottom, with the modal itself scrolling internally if taller
   than the screen. */
.plc-search-modal-overlay {
	all: initial;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 2000000;
	display: none;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
	padding: 60px 20px;
}
.plc-search-modal-overlay.plc-open {
	display: flex;
}
.plc-search-modal {
	background: #ffffff;
	border-radius: 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	max-width: 1200px;
	width: 100%;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	margin: auto; /* fixes a flexbox quirk where centered+scrollable content can clip its own top edge */
	padding: 40px;
	font-family: 'Barlow', sans-serif;
	color: #484848;
	position: relative;
}
.plc-search-modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: transparent;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #484848;
	line-height: 1;
}
.plc-search-modal-close:hover {
	color: #ab8a62;
}
.plc-search-modal-refine {
	margin-bottom: 20px;
	border: 1px solid #ececec;
}
.plc-search-modal-refine .plc-search-col {
	border-right: 1px solid #ececec;
}
.plc-search-sort-row {
	position: relative;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	margin-bottom: 16px;
}
select.plc-search-sort-select {height:unset;}
.plc-search-sort-select {
	border: 1px solid #ececec;
	background: #ffffff;
	padding: 8px 12px;
	font-family: 'Barlow', sans-serif;
	font-size: 13px;
	color: #222222;
}
.plc-search-sort-tooltip {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: #222222;
	color: #ffffff;
	font-size: 13px;
	padding: 10px 14px;
	max-width: 280px;
	z-index: 10;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.plc-search-sort-tooltip.plc-visible {
	opacity: 1;
	transform: translateY(0);
}
.plc-search-status {
	font-size: 14px;
	color: #484848;
	padding: 10px 0;
}
/* --- Result rows: photo left, details right --- */
.plc-search-results-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.plc-search-result-row {
	display: flex;
	gap: 20px;
	border: 1px solid #ececec;
	padding: 16px;
}
.plc-search-result-photo {
	flex: 0 0 200px;
}
.plc-search-result-photo img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
}
.plc-search-result-info {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}
.plc-search-result-info h4 {
	font-family: 'Gilda Display', serif;
	font-size: 20px;
	font-weight: 400;
	color: #222222;
	margin: 0;
}
.plc-search-result-facts {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 14px;
	color: #484848;
}
.plc-search-result-facts span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.plc-search-result-facts span.plc-price-fact {
	gap: 1px;
}
.plc-search-result-facts i {
	color: #ab8a62;
	font-size: 24px;
}
.plc-search-result-actions {
	margin-top: 8px;
}
.plc-search-view-more {
	display: inline-block;
	font-family: 'Barlow Condensed', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 16px;
	color: #ffffff;
	background: #222;
	padding: 10px 20px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}
.plc-search-view-more span {
	position: relative;
	z-index: 2;
}
.plc-search-view-more:before {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 100%;
	z-index: 1;
	background: #ab8a62;
	transition: all 0.3s ease;
}
.plc-search-view-more:hover:before {
	width: 100%;
	left: 0;
	transition: width 0.3s ease;
}
.plc-search-view-more:hover {
	color: #ffffff;
}
@media screen and (max-width: 640px) {
	.plc-search-result-row {
		flex-direction: column;
	}
	.plc-search-result-photo {
		flex: 0 0 auto;
	}
}
/* ---------------------------------------------------------------------
   Mobile collapse: "Search Apartments" toggle button (767px and under
   only), with the search bar sliding open/closed smoothly using the
   grid-rows technique — animates to the form's real height, whatever
   that happens to be, rather than a fixed/guessed max-height.
   --------------------------------------------------------------------- */
.plc-search-toggle-btn {
	display: none;
	width: 100%;
	background: #ab8a62;
	color: #ffffff;
	border: none;
	padding: 16px 20px;
	font-family: 'Barlow Condensed', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 24px;
	cursor: pointer;
}
.plc-search-toggle-btn i {
	margin-left: 8px;
	font-size: 11px;
	display: inline-block;
	transition: transform 0.25s ease;
}
.plc-search-toggle-btn.plc-open i {
	transform: rotate(180deg);
}
.plc-search-toggle-btn:hover {
	background: #222222;
}
.plc-search-collapse {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}
.plc-search-collapse.plc-open {
	grid-template-rows: 1fr;
}
.plc-search-collapse-inner {
	overflow: hidden;
	min-height: 0;
}
@media screen and (max-width: 991px) {
	.plc-search-submit {padding:0 40px;}
}
@media screen and (max-width: 767px) {
	.plc-search-toggle-btn {
		display: block;
	}
}
@media screen and (min-width: 768px) {
	.plc-search-collapse {
		grid-template-rows: 1fr !important;
	}
}