/* 
 * BeeRent Integration Frontend Styles
 */

:root {
	--ink: #0b1a2a;
	--turq: #1bb6b1;
	--line: #e7edf3;
	--field: #dbe3ea;
	--muted: rgba(11, 31, 51, .72);
}

/* ===== Resets for BeeRent Components ===== */
.villas-wrap *,
.beerent-single-wrap *,
.filter *,
.beerent-pagination *,
.lux-search-section * {
	box-sizing: border-box;
}

/* ===== Common Layout ===== */
.lx-wrap {
	max-width: 1480px;
	margin: 0 auto;
	padding: 30px 24px 76px;
}

/* ===== Search Bar (index3.html Scoped) ===== */
.beerent-search-bar-wrapper {
	--lux-turquoise: #19b6b3;
	--lux-navy: #0f2b46;
	--lux-border: #e5e5e5;
	--lux-bg: #ffffff;
}

.beerent-search-bar-wrapper .search-section {
	/* 	background: var(--lux-bg); */
	padding: 40px 24px;
	display: flex;
	justify-content: center;
}

.beerent-search-bar-wrapper .lux-search {
/* 	width: min(1200px, 100%); */
	background: var(--lux-bg);
	border: 1px solid var(--lux-border);
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
	position: relative;
}

.beerent-search-bar-wrapper .field {
	padding: 10px 30px;
	border-right: 1px solid var(--lux-border);
	position: relative;
	cursor: pointer;
	user-select: none;
	color: var(--lux-navy);
	background: #fff;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

.beerent-search-bar-wrapper .field:last-child {
	border-right: none;
}

.beerent-search-bar-wrapper .label-row {
	display: flex;
	align-items: center;
	gap: 10px;
	/* 	margin-bottom: 8px; */
}

.beerent-search-bar-wrapper .icon {
	width: 18px;
	height: 18px;
	color: var(--lux-turquoise);
	flex: 0 0 auto;
}

.beerent-search-bar-wrapper .label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--lux-navy);
	opacity: 0.85;
}

.beerent-search-bar-wrapper .value {
	font-size: 18px;
	color: var(--lux-navy);
}

.beerent-search-bar-wrapper .search-btn {
	background: var(--lux-turquoise);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: 0.25s;
	cursor: pointer;
}

.beerent-search-bar-wrapper .search-btn:hover {
	filter: brightness(0.92);
}

.beerent-search-bar-wrapper .panel {
	position: absolute;
	top: 100%;
	background: #fff;
	border: 1px solid var(--lux-border);
	z-index: 130;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: all .18s ease;
	box-shadow: 0 10px 30px rgba(11, 31, 51, .12);
}

.beerent-search-bar-wrapper .panel.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.beerent-search-bar-wrapper .calendar-panel {
	left: 50%;
	width: 680px;
	padding: 16px 16px 10px;
	transform: translate(-50%, 8px);
}

.beerent-search-bar-wrapper .calendar-panel.open {
	transform: translate(-50%, 0);
}

.beerent-search-bar-wrapper .guest-panel,
.beerent-search-bar-wrapper .dropdown-panel {
	left: 0;
	width: 100%;
}

.beerent-search-bar-wrapper .guest-panel {
	padding: 18px;
}

.beerent-search-bar-wrapper .counter {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
}

.beerent-search-bar-wrapper .counter button {
	background: none;
	border: 1px solid var(--lux-turquoise);
	width: 40px;
	height: 40px;
	font-size: 20px;
	cursor: pointer;
	color: var(--lux-navy);
}

.beerent-search-bar-wrapper .counter span {
	font-size: 18px;
	min-width: 40px;
	text-align: center;
	color: var(--lux-navy);
}

.beerent-search-bar-wrapper .dropdown-panel div {
	padding: 16px 18px;
	cursor: pointer;
	color: var(--lux-navy);
	background: #fff;
}

.beerent-search-bar-wrapper .dropdown-panel div:hover {
	background: #f6f6f6;
}

/* Flatpickr luxury tweaks inside search bar */
.beerent-search-bar-wrapper .calendar-panel {
	overflow: visible;
	/* Prevent scrollbar unless needed */
}

.beerent-search-bar-wrapper .flatpickr-calendar {
	box-shadow: none !important;
	border: 0 !important;
	background: #fff !important;
}

.beerent-search-bar-wrapper .flatpickr-calendar.inline {
	width: 650px !important;
	min-width: 650px !important;
}

/* Ensure months are side by side */
.beerent-search-bar-wrapper .flatpickr-months {
	display: flex !important;
}

.beerent-search-bar-wrapper .flatpickr-month {
	flex: 1;
}

.beerent-search-bar-wrapper .flatpickr-innerContainer {
	display: flex !important;
	flex-direction: column;
}

.beerent-search-bar-wrapper .flatpickr-rContainer {
	display: block !important;
	width: 100% !important;
}

.beerent-search-bar-wrapper .flatpickr-weekdays {
	display: flex !important;
	width: 100% !important;
}

.beerent-search-bar-wrapper .flatpickr-days {
	display: flex !important;
	width: 100% !important;
	justify-content: space-between;
}

.beerent-search-bar-wrapper .dayContainer {
	width: 307.875px !important;
	min-width: 307.875px !important;
	max-width: 307.875px !important;
}

.beerent-search-bar-wrapper .flatpickr-day.selected,
.beerent-search-bar-wrapper .flatpickr-day.startRange,
.beerent-search-bar-wrapper .flatpickr-day.endRange {
	background: var(--lux-turquoise) !important;
	border-color: var(--lux-turquoise) !important;
}

@media(max-width: 1100px) {
	.beerent-search-bar-wrapper .lux-search {
		grid-template-columns: 1fr;
	}

	.beerent-search-bar-wrapper .field {
		border-right: none;
		border-bottom: 1px solid var(--lux-border);
	}

	.beerent-search-bar-wrapper .search-btn {
		min-height: 64px;
	}

	.beerent-search-bar-wrapper .calendar-panel {
		width: calc(100% - 2px);
		left: 0;
		transform: translateY(8px);
	}

	.beerent-search-bar-wrapper .calendar-panel.open {
		transform: translateY(0);
	}

	.beerent-search-bar-wrapper .flatpickr-calendar.inline {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 340px !important;
		margin: 0 auto;
	}
}

/* ===== Property Listing Grid ===== */
.layout {
/* 	max-width: 1650px; */
	margin: 60px auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 32px;
	align-items: start;
}

.layout.no-sidebar {
	grid-template-columns: 1fr;
	gap: 32px;
}

.beerent-results .villas {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.beerent-results .property-card {
	position: relative;
	aspect-ratio: 1/1;
	overflow: hidden;
	background: #000;
	display: block;
}

.beerent-results .property-card img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform .4s ease;
	display: block;
	margin: 0 !important;
}

.beerent-results .property-card:hover img {
	transform: scale(1.05);
}

.beerent-results .overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px;
	background: linear-gradient(to top, rgb(0 0 0 / 80%) 0%, rgba(0, 0, 0, .16) 34%, rgba(0, 0, 0, 0) 66%);
	z-index: 2;
}

.beerent-results .topline {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 12px;
}

.beerent-results .name {
	font-family: "DM Serif Display", serif;
	font-size: 22px;
	color: #fff !important;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.beerent-results .price {
	font-family: "DM Serif Display", serif;
	font-size: 22px;
	color: var(--turq);
	display: flex;
	gap: 8px;
	align-items: baseline;
}

.beerent-results .price .from {
	font-family: "Plus Jakarta Sans";
	font-size: 12px;
	font-weight: 800;
	color: #fff;
	text-transform: lowercase;
}

.beerent-results .meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, .22);
	font-size: 13px;
	font-weight: 800;
	color: #fff;
}

.beerent-results .meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.beerent-results .icon {
	width: 16px;
	height: 16px;
	color: var(--turq);
	flex: 0 0 16px;
}

/* ===== Filter Sidebar ===== */
.beerent-filter {
	background: #fff;
	padding: 34px;
	border: 1px solid var(--line);
	position: sticky;
	top: 40px;
}

.beerent-filter h3 {
	font-family: "DM Serif Display", serif;
	font-size: 22px;
	margin: 0 0 26px 0;
}

.beerent-filter .filter-group {
	margin-bottom: 24px;
}

.beerent-filter .filter-group label {
	font-weight: 800;
	font-size: 13px;
	display: block;
	margin-bottom: 10px;
}

.beerent-filter .field,
.beerent-filter select,
.beerent-filter input[type="text"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--field);
	background: #fff;
	font-family: inherit;
	font-size: 14px;
}

.beerent-filter .date-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--field);
	padding: 12px 14px;
}

.beerent-filter .date-wrap svg {
	width: 18px !important;
	height: 18px !important;
	color: var(--turq);
	flex: 0 0 18px;
	display: block;
}

.beerent-filter .date-wrap input {
	border: none !important;
	padding: 0 !important;
	outline: none;
	width: 100%;
	font: inherit;
	background: transparent;
}

.beerent-filter .stepper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--field);
	padding: 10px 14px;
}

.beerent-filter .stepper button {
	background: none;
	border: none;
	font-size: 18px;
	font-weight: 900;
	cursor: pointer;
	color: var(--turq);
	width: 34px;
	height: 34px;
	line-height: 34px;
	display: grid;
	place-items: center;
}

.beerent-filter .stepper span {
	font-weight: 800;
	font-size: 14px;
}

.beerent-filter .checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 445px;
	overflow: auto;
}

.beerent-filter .checkbox-group label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin: 0;
	text-align: left;
}

.beerent-filter .checkbox-group input[type="checkbox"] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 1px solid #cfd8e2;
	background: #fff;
	position: relative;
	margin: 0;
}

.beerent-filter .checkbox-group input[type="checkbox"]:checked {
	background: var(--turq);
	border-color: var(--turq);
}

.beerent-filter .checkbox-group input[type="checkbox"]:checked::after {
	content: "✓";
	position: absolute;
	color: #fff;
	font-size: 12px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%);
}

.beerent-filter button.submit {
	width: 100%;
	padding: 14px;
	background: var(--turq);
	color: #fff;
	border: none;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity .2s;
}

.beerent-filter button.submit:hover {
	opacity: 0.9;
}

/* ===== Pagination ===== */
.beerent-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
}

.beerent-pagination .page-numbers {
	display: flex;
	gap: 5px;
}

.beerent-pagination a,
.beerent-pagination span {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid var(--line);
	color: var(--ink);
	text-decoration: none;
	font-weight: 700;
	transition: all .2s;
	background: #fff;
	cursor: pointer;
}

.beerent-pagination a:hover {
	border-color: var(--turq);
	color: var(--turq);
}

.beerent-pagination span.current {
	background: var(--turq);
	color: #fff;
	border-color: var(--turq);
}

.beerent-pagination .prev,
.beerent-pagination .next {
	font-weight: 900;
}

/* ===== Single Property Page Scoped ===== */
.beerent-single-wrap {
	color: var(--ink);
	font-family: "Plus Jakarta Sans", sans-serif;
	line-height: 1.6;
	text-align: left;
}

.beerent-single-wrap .lx-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 392px;
	gap: 28px;
	align-items: start;
}

.beerent-single-wrap .lx-title {
	font-family: "DM Serif Display", serif;
	font-size: clamp(32px, 3.2vw, 46px);
	line-height: 1.05;
	margin: 0 0 10px;
	color: var(--ink) !important;
	display: flex;
	align-items: center;
	gap: 20px;
}

.beerent-single-wrap .lx-h2 {
	font-family: "DM Serif Display", serif;
	font-size: 26px;
	margin: 0 0 14px;
	color: var(--ink);
}

.beerent-single-wrap .card {
	background: #fff;
	border: 1px solid rgba(9, 31, 51, .12);
	padding: 24px;
	box-shadow: 0 10px 28px rgba(11, 31, 51, .08);
	margin-bottom: 24px;
}

.beerent-single-wrap .lux-hover {
	transition: transform .28s ease, box-shadow .28s ease;
}

.beerent-single-wrap .lux-hover:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 50px rgba(11, 31, 51, .10);
}

.beerent-single-wrap .facts {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 22px;
	margin: 20px 0;
}

.beerent-single-wrap .fact {
	display: flex;
	align-items: center;
	gap: 10px;
}

.beerent-single-wrap .fact svg {
	width: 34px !important;
	height: 34px !important;
	color: var(--turq);
	display: block;
}

.beerent-single-wrap .fact span {
	font-weight: 800;
	font-size: 15px;
}

.beerent-single-wrap .readmore .rm-content {
	max-height: 120px;
	overflow: hidden;
	position: relative;
	transition: max-height .35s ease;
}

.beerent-single-wrap .readmore.is-open .rm-content {
	max-height: 2000px;
}

.beerent-single-wrap .readmore .fade {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(to bottom, transparent, #fff);
}

.beerent-single-wrap .readmore.is-open .fade {
	display: none;
}

.beerent-single-wrap .rm-btn {
	margin-top: 10px;
	background: none;
	border: 1px solid var(--line);
	padding: 8px 16px;
	font-weight: 800;
	cursor: pointer;
	color: var(--ink);
}

.beerent-single-wrap .chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.beerent-single-wrap .chip {
	border: 1px solid var(--line);
	padding: 6px 12px;
	font-size: 13px;
	background: #f9fbfe;
	font-weight: 600;
	color: var(--ink);
}

.beerent-single-wrap .sticky {
	position: sticky;
	top: 30px;
}

.beerent-single-wrap .price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 15px;
}

.beerent-single-wrap .price-row .amount {
	font-size: 32px;
	font-weight: 900;
	color: var(--turq);
}

.beerent-single-wrap .form label {
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--muted);
	display: block;
	margin-bottom: 5px;
}

.beerent-single-wrap .form input,
.beerent-single-wrap .form select {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--line);
	margin-bottom: 15px;
	font-family: inherit;
	color: var(--ink);
	background: #fff;
}

.beerent-single-wrap .btn {
	border: 1px solid rgba(33, 199, 192, .75);
	border-radius: 0;
	padding: 15px 14px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
	background: #21c7c0;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.beerent-single-wrap .btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 38px rgba(11, 31, 51, .12);
	filter: brightness(.98);
}

/* Responsive */
@media (max-width: 1200px) {
	.layout {
		grid-template-columns: 1fr;
	}

	.beerent-results .villas {
		grid-template-columns: repeat(2, 1fr);
	}

	.filter {
		position: relative;
		top: auto;
	}
}

@media (max-width: 1024px) {
	.beerent-single-wrap .lx-grid {
		grid-template-columns: 1fr;
	}

	.beerent-single-wrap .sticky {
		position: static;
	}
}

@media (max-width: 600px) {
	.beerent-results .villas {
		grid-template-columns: 1fr;
	}
}

/* ===== Lightbox Styles ===== */
#beerent-lightbox {
	user-select: none;
}

#beerent-lightbox img {
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	animation: lbFadeIn .3s ease;
}

@keyframes lbFadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* ===== Luxury Custom Calendar (From Static Reference) ===== */
/* All rules scoped under .beerent-single-wrap for specificity over WP themes */

.beerent-single-wrap .cal-wrap {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 14px !important;
	margin-bottom: 20px !important;
	margin-top: 20px;
}

@media (max-width: 860px) {
	.beerent-single-wrap .cal-wrap {
		grid-template-columns: 1fr !important;
	}
}

.beerent-single-wrap .cal {
	border: 1px solid rgba(9, 31, 51, 0.12) !important;
	border-radius: 0px !important;
	overflow: hidden !important;
	background: #fff !important;
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.beerent-single-wrap .cal:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 50px rgba(11, 31, 51, .10);
	border-color: rgba(33, 199, 192, .35) !important;
}

.beerent-single-wrap .cal-head {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 12px 14px !important;
	border-bottom: 1px solid rgba(9, 31, 51, 0.12) !important;
	margin: 0 !important;
}

.beerent-single-wrap .cal-head .m {
	font-weight: 900 !important;
	letter-spacing: .02em;
	font-size: 16px !important;
	color: #0b1f33 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.beerent-single-wrap .cal-nav {
	display: flex !important;
	gap: 8px !important;
}

.beerent-single-wrap .cal-iconbtn {
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	min-height: 36px !important;
	display: grid !important;
	place-items: center !important;
	border: 1px solid rgba(9, 31, 51, 0.12) !important;
	background: #fff !important;
	cursor: pointer !important;
	border-radius: 0px !important;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
	color: #0b1f33 !important;
	font-size: 18px !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1 !important;
}

.beerent-single-wrap .cal-iconbtn:hover {
	transform: translateY(-1px);
	border-color: rgba(33, 199, 192, .55) !important;
	box-shadow: 0 12px 26px rgba(11, 31, 51, .06);
}

.beerent-single-wrap .cal-grid {
	padding: 12px 14px 16px !important;
	display: grid !important;
	grid-template-columns: repeat(7, 1fr) !important;
	gap: 8px !important;
	list-style: none !important;
	margin: 0 !important;
}

.beerent-single-wrap .cal-dow {
	font-size: 11px !important;
	letter-spacing: .12em;
	text-transform: uppercase !important;
	color: rgba(11, 31, 51, .55) !important;
	text-align: center !important;
	padding: 2px 0 8px !important;
	font-weight: 900 !important;
	margin: 0 !important;
	display: block !important;
}

.beerent-single-wrap .cal-day {
	aspect-ratio: 1/1 !important;
	border: 1px solid rgba(9, 31, 51, 0.12) !important;
	border-radius: 0px !important;
	display: grid !important;
	place-items: center !important;
	font-weight: 900 !important;
	font-size: 13px !important;
	background: #fff !important;
	color: #0b1f33 !important;
	user-select: none;
	cursor: pointer;
	transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	text-align: center !important;
	line-height: 1 !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.beerent-single-wrap .cal-day:hover:not(.unavail):not(.off) {
	transform: translateY(-1px);
	border-color: rgba(33, 199, 192, .55) !important;
	box-shadow: 0 10px 22px rgba(11, 31, 51, .06);
}

.beerent-single-wrap .cal-day.unavail {
	background: rgba(11, 31, 51, .06) !important;
	color: rgba(11, 31, 51, .45) !important;
	cursor: not-allowed !important;
	box-shadow: none !important;
	border-color: rgba(9, 31, 51, .10) !important;
	text-decoration: line-through !important;
}

.beerent-single-wrap .cal-day.off {
	opacity: .25 !important;
	cursor: default !important;
	background: transparent !important;
	border-color: transparent !important;
}

.beerent-single-wrap .cal-day.sel {
	border-color: rgba(33, 199, 192, .85) !important;
	box-shadow: inset 0 0 0 2px rgba(33, 199, 192, .35) !important;
	background: rgba(33, 199, 192, .12) !important;
}

.beerent-single-wrap .cal-day.in-range {
	background: rgba(33, 199, 192, .08) !important;
	border-color: rgba(33, 199, 192, .35) !important;
}

.beerent-single-wrap .cal-legend {
	display: flex !important;
	gap: 20px !important;
	margin-top: 15px !important;
	flex-wrap: wrap !important;
}

.beerent-single-wrap .cal-legend-item {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #0b1f33 !important;
}

.beerent-single-wrap .cal-legend-box {
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	border: 1px solid rgba(9, 31, 51, 0.12) !important;
	display: block !important;
}

.beerent-single-wrap .cal-legend-box.available {
	background: #fff !important;
}

.beerent-single-wrap .cal-legend-box.booked {
	background: rgba(11, 31, 51, .06) !important;
	text-decoration: line-through;
}

.beerent-single-wrap .cal-legend-box.selected {
	background: rgba(33, 199, 192, .12) !important;
	border-color: rgba(33, 199, 192, .85) !important;
}

/* Kicker label styling */
.beerent-single-wrap .lx-kicker {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 1px;
	color: #1bb6b1;
	margin-bottom: 5px;
	text-transform: uppercase;
}

/* ===== Booking Sidebar Specific Styles ===== */
.beerent-single-wrap .note {
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 12px;
	background: rgba(246, 251, 251, 1);
	color: rgba(11, 31, 51, .76);
	font-size: 13px;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
	margin-bottom: 12px;
}

.beerent-single-wrap .note:hover {
	transform: translateY(-1px);
	border-color: rgba(33, 199, 192, .35);
	box-shadow: 0 14px 30px rgba(11, 31, 51, .06);
}

.beerent-single-wrap .note b {
	color: var(--ink);
	font-weight: 900;
}

.beerent-single-wrap .check {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	color: rgba(11, 31, 51, .70);
	margin-bottom: 15px;
}

.beerent-single-wrap .check input {
	width: auto;
	margin-top: 3px;
}

.beerent-single-wrap .smallprint {
	font-size: 12px;
	color: rgba(11, 31, 51, .60);
	margin-top: 5px;
}

.beerent-single-wrap .btns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 6px;
}

.beerent-single-wrap .btn.secondary {
	background: #fff;
	color: #0b1f33;
	border-color: #091f331f;
}

.beerent-single-wrap .btn.secondary:hover {
	border-color: rgba(33, 199, 192, .55);
}

.beerent-single-wrap .divider {
	height: 1px;
	background: var(--line);
	margin: 15px 0;
}

/* ===== Pending Calendar Day (Amber) ===== */
.beerent-single-wrap .cal-day.pending {
	background: rgba(245, 166, 35, 0.15) !important;
	color: rgba(180, 120, 10, 0.85) !important;
	cursor: not-allowed !important;
	border-color: rgba(245, 166, 35, 0.45) !important;
	box-shadow: none !important;
	position: relative;
}

.beerent-single-wrap .cal-day.pending::after {
	content: "";
	position: absolute;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(245, 166, 35, 0.7);
}

.beerent-single-wrap .cal-legend-box.pending {
	background: rgba(245, 166, 35, 0.15) !important;
	border-color: rgba(245, 166, 35, 0.45) !important;
}

/* Changeover Indicators */
.beerent-single-wrap .cal-day.in-only::before {
	content: "▲";
	position: absolute;
	top: 0;
	left: 2px;
	font-size: 8px;
	color: var(--p);
}

.beerent-single-wrap .cal-day.out-only::after {
	content: "▼";
	position: absolute;
	bottom: 0;
	right: 2px;
	font-size: 8px;
	color: #d63638;
}

.beerent-single-wrap .cal-day.no-changeover {
	opacity: 0.7;
	cursor: not-allowed;
	background: #f9f9f9;
}

/* ===== Booking Loader Spinner ===== */
.booking-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 20px 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--muted);
}

.booking-loader .spinner {
	width: 22px;
	height: 22px;
	border: 3px solid var(--line);
	border-top-color: var(--turq);
	border-radius: 50%;
	animation: beerent-spin 0.7s linear infinite;
}

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

/* ===== Price Breakdown ===== */
.beerent-single-wrap .price-breakdown {
	margin: 10px 0;
	font-size: 13px;
}

.beerent-single-wrap .price-breakdown .breakdown-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
	color: var(--muted);
	border-bottom: 1px dashed rgba(231, 237, 243, 0.7);
}

.beerent-single-wrap .price-breakdown .breakdown-row:last-child {
	border-bottom: none;
}

.beerent-single-wrap .price-breakdown .breakdown-row.total-row {
	font-weight: 900;
	font-size: 16px;
	color: var(--ink);
	border-bottom: none;
	border-top: 2px solid var(--line);
	padding-top: 10px;
	margin-top: 4px;
}

.beerent-single-wrap .price-breakdown .breakdown-row .breakdown-label {
	font-weight: 600;
}

.beerent-single-wrap .price-breakdown .breakdown-row .breakdown-value {
	font-weight: 800;
	color: var(--ink);
}

.beerent-single-wrap .price-breakdown .breakdown-row.total-row .breakdown-value {
	color: var(--turq);
	font-size: 18px;
}

/* ===== Mandatory Extra (Disabled) ===== */
.beerent-single-wrap .extra-item.mandatory {
	opacity: 0.85;
	background: rgba(246, 251, 251, 0.6);
	border-radius: 4px;
	padding: 6px 10px;
}

.beerent-single-wrap .extra-item.mandatory input[type="checkbox"] {
	accent-color: var(--turq);
	pointer-events: none;
}

.beerent-single-wrap .extra-item.mandatory .mandatory-tag {
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--turq);
	margin-left: 4px;
}

/* ===== Luxistria Slider Gallery ===== */
.lx-gallery-slider {
	--lx-blue: #0b2a55;
	--lx-thumb-h: 140px;
	--lx-thumb-gap: 15px;
	--lx-overlap: 150px;
	position: relative;
	margin: 20px 0 80px;
	z-index: 1;
}

.lx-gallery-slider .slider-container {
	position: relative;
	width: 100%;
	height: 65vh;
	min-height: 450px;
	background: #eee;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.lx-gallery-slider .frame {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.lx-gallery-slider .main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: pointer;
}

.lx-gallery-slider .controls {
	position: absolute;
	top: 25px;
	left: 25px;
	right: 25px;
	display: flex;
	justify-content: space-between;
	z-index: 20;
	pointer-events: none;
}

.lx-gallery-slider .btn {
	width: 50px;
	height: 50px;
	border: none;
	background: rgba(11, 26, 42, 0.6);
	color: white;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	pointer-events: auto;
	backdrop-filter: blur(4px);
}

.lx-gallery-slider .btn:hover {
	background: rgba(27, 182, 177, 0.9);
	transform: scale(1.1);
}

.lx-gallery-slider .thumb-strip {
	position: absolute;
	left: 0;
	right: 0;
	bottom: calc(-1 * var(--lx-thumb-h) + var(--lx-overlap));
	display: flex;
	gap: var(--lx-thumb-gap);
	padding: 0 0px;
	z-index: 30;
	pointer-events: none;
}

.lx-gallery-slider .thumb {
	flex: 1;
	height: var(--lx-thumb-h);
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.4s cubic-bezier(.16, .9, .12, 1);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	/* border: 3px solid #fff; */
	pointer-events: auto;
}

.lx-gallery-slider .thumb:hover {
	transform: translateY(-15px);
	z-index: 35;
}

.lx-gallery-slider .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lx-gallery-fly {
	position: fixed;
	z-index: 100000;
	overflow: hidden;
	pointer-events: none;
	border: 3px solid #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lx-gallery-fly img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.lx-gallery-slider .slider-container {
		height: 50vh;
	}

	.lx-gallery-slider .thumb {
		height: 100px;
		--lx-thumb-h: 100px;
	}
}

@media (max-width: 600px) {
	.lx-gallery-slider .slider-container {
		height: 40vh;
		min-height: 300px;
	}

	.lx-gallery-slider .thumb-strip {
		padding: 0 15px;
	}

	.lx-gallery-slider .thumb {
		height: 80px;
		--lx-thumb-h: 80px;
	}
}

/* ===== Favorites System ===== */
.property-card {
	position: relative !important;
	overflow: hidden;
}

.beerent-fav-btn {
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	z-index: 20 !important;
	width: 38px !important;
	height: 38px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.92) !important;
	border: none !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
	transition: transform 0.25s ease, background 0.25s ease !important;
	padding: 0 !important;
	backdrop-filter: blur(4px) !important;
}

.beerent-fav-btn:hover {
	transform: scale(1.12) !important;
}

/* Default heart outline icon */
.beerent-fav-btn .fav-icon {
	width: 20px !important;
	height: 20px !important;
	fill: none !important;
	stroke: #0b1a2a !important;
	stroke-width: 1.8 !important;
	transition: fill 0.2s ease, stroke 0.2s ease !important;
	pointer-events: none !important;
	display: block !important;
}

/* Filled heart when active */
.beerent-fav-btn.is-fav .fav-icon {
	fill: #14b8b0 !important;
	stroke: #14b8b0 !important;
}

/* Pulse animation on click */
.beerent-fav-btn.is-fav {
	animation: fav-pulse 0.35s ease !important;
}

@keyframes fav-pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.25);
	}

	100% {
		transform: scale(1);
	}
}

.single-fav-btn {
	position: static !important;
	background: #f0f0f0 !important;
	width: 44px !important;
	height: 44px !important;
}

/* Toast notification */
.beerent-toast {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: #0b1a2a;
	color: #fff;
	padding: 12px 24px;
	border-radius: 50px;
	z-index: 99999;
	font-weight: 500;
	font-size: 14px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.beerent-toast.is-active {
	transform: translateX(-50%) translateY(0);
}

/* Header badge */
.fav-count-badge {
	background: #1bb6b1 !important;
	color: #fff !important;
	font-size: 10px !important;
	min-width: 18px !important;
	height: 18px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 100px !important;
	padding: 0 4px !important;
	font-weight: 700 !important;
}

/* Favorites page guest notice */
.beerent-guest-notice {
	background: rgba(27, 182, 177, 0.08);
	border: 1px solid rgba(27, 182, 177, 0.25);
	border-radius: 12px;
	padding: 14px 20px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #0b1a2a;
}

.beerent-guest-notice a {
	color: #1bb6b1;
	font-weight: 600;
	text-decoration: none;
}

.beerent-guest-notice a:hover {
	text-decoration: underline;
}

/* Favorites page loader */
.beerent-loading-favs {
	display: flex;
	justify-content: center;
	padding: 60px 0;
	width: 100%;
}

/* Header Favorites Button Shortcode */
.beerent-fav-header-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(11,35,64,0.1);
	background: transparent;
	position: relative;
	box-sizing: border-box;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
}

.beerent-fav-header-btn:hover {
	border-color: #1bb6b1;
	background: rgba(27, 182, 177, 0.05);
}

.beerent-fav-header-btn .beerent-fav-header-icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #1bb6b1;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.3s ease;
}

.beerent-fav-header-btn:hover .beerent-fav-header-icon {
	transform: scale(1.1);
}

.beerent-fav-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: #1bb6b1;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border: 1px solid #ffffff;
	animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

/* ===== Half-day check-in / check-out diagonal visual split ===== */
/* Check-in day: morning occupied (pink/grey), afternoon available (white) */
.beerent-single-wrap .cal-day.half-booked-in {
	background: linear-gradient(45deg, rgba(11, 31, 51, .06) 50%, #ffffff 50%) !important;
}
.beerent-single-wrap .cal-day.half-booked-in.sel,
.beerent-single-wrap .cal-day.half-booked-in.in-range {
	background: linear-gradient(45deg, rgba(11, 31, 51, .06) 50%, rgba(33, 199, 192, .12) 50%) !important;
}

/* Check-out day: morning available (white), afternoon occupied (pink/grey) */
.beerent-single-wrap .cal-day.half-booked-out {
	background: linear-gradient(45deg, #ffffff 50%, rgba(11, 31, 51, .06) 50%) !important;
}
.beerent-single-wrap .cal-day.half-booked-out.sel,
.beerent-single-wrap .cal-day.half-booked-out.in-range {
	background: linear-gradient(45deg, rgba(33, 199, 192, .12) 50%, rgba(11, 31, 51, .06) 50%) !important;
}

/* Paragraph spacing inside property descriptions */
.lx-p p {
	margin-bottom: 20px !important;
	line-height: 1.75 !important;
}
.lx-p p:last-child {
	margin-bottom: 0 !important;
}