body.filter-drawer-open {
	overflow: hidden;
}

.mobile-filter-controls {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 16px;
	z-index: 1040;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

.mobile-filter-trigger {
	pointer-events: auto;
	border: 0;
	border-radius: 999px;
	padding: 12px 32px;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	background: #0a7ee2;
	box-shadow: 0 8px 24px rgba(10, 126, 226, 0.3);
}

.property-filter-drawer {
	position: fixed;
	inset: 0;
	z-index: 1060;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.property-filter-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
}

.property-filter-overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 27, 33, 0.45);
}

.property-filter-panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: min(86vh, 760px);
	background: #ffffff;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.property-filter-drawer.is-open .property-filter-panel {
	transform: translateY(0);
}

.property-filter-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 18px 14px;
	border-bottom: 1px solid #e5e7eb;
}

.property-filter-panel-title {
	margin: 0;
	font-size: 28px;
	line-height: 1;
}

.property-filter-panel-close {
	border: 0;
	background: transparent;
	color: #6b7280;
	font-size: 30px;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
}

.property-filter-panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
	padding-bottom: 96px;
}

.property-filter-panel-body .widget-filter-search {
	border: 0;
	box-shadow: none;
	padding: 0;
	margin: 0;
	background: transparent;
}

@media (min-width: 992px) {
	.mobile-filter-controls,
	.property-filter-drawer {
		display: none;
	}
}
