.mmpf-filters-form {
	background: #ffffff;
	padding: 28px;
	border: 1px solid #dbe4ea;
	border-radius: 20px;
	box-shadow: 0 14px 36px rgba(8, 59, 92, 0.08);
	position: relative;
	overflow: hidden;
}

.mmpf-filters-form::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #083b5c 0%, #0d567d 100%);
}

.mmpf-block {
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid #edf2f5;
}

.mmpf-block:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.mmpf-block h3 {
	font-size: 32px;
	line-height: 1.1;
	margin: 0 0 24px;
	font-weight: 800;
	color: #083b5c;
	letter-spacing: -0.02em;
}

.mmpf-block h4 {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 16px;
	font-weight: 700;
	color: #1b2b34;
	padding-bottom: 10px;
	border-bottom: 1px solid #e7edf1;
}

.mmpf-select,
.mmpf-price-fields input {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #cfd8de;
	border-radius: 12px;
	background: #fdfefe;
	font-size: 15px;
	color: #1f2d36;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mmpf-select:hover,
.mmpf-price-fields input:hover {
	border-color: #9eb4c2;
}

.mmpf-select:focus,
.mmpf-price-fields input:focus {
	border-color: #083b5c;
	box-shadow: 0 0 0 4px rgba(8, 59, 92, 0.10);
	background: #fff;
}

.mmpf-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.mmpf-btn {
	background: #083b5c;
	color: #fff;
	border: none;
	padding: 12px 18px;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 10px 20px rgba(8, 59, 92, 0.16);
}

.mmpf-btn:hover {
	background: #0d567d;
	box-shadow: 0 12px 24px rgba(8, 59, 92, 0.22);
	transform: translateY(-1px);
}

.mmpf-clear {
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #d96b8d;
	transition: color 0.2s ease;
}

.mmpf-clear:hover {
	color: #b94f72;
}