.filter-box {
	width: 300px;
	background: #fff;
	border-radius: 18px;
	padding: 40px 20px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	font-family: Inter, Arial, sans-serif;
	height: 100%;
}

.filter-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.filter-header h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #000;
}

.filter-reset {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	font-weight: 700;
	font-family: Tilda;
}

.filter-item {
	margin-bottom: 22px;
}

.filter-item label {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	color: #444;
	font-weight: 700;
}

.filter-item select,
.filter-range input,
.filter-range-3 input {
	width: 100%;
	padding: 12px;
	border: 1px solid #E0E7EF;
	border-radius: 10px;
	background: #F9FAFB;
	font-size: 14px;
	outline: none;
	transition: 0.2s;
	color: #999;
}

.filter-item select:focus,
.filter-range input:focus,
.filter-range-3 input:focus {
	border-color: #3B82F6;
	background: #fff;
}

.filter-range {
	display: flex;
	gap: 10px;
}

.filter-range input {
	flex: 1;
}

.catalog__page__input {
	width: 50% !important;
	padding: 8px !important;
	margin-bottom: 10px;
}

.filter-range-3 input {
	flex: 1;
}

.filter-item select {
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23999" stroke-width="2" stroke-linecap="round"/></svg>');
	background-repeat: no-repeat;
	background-position: right 12px center;
}

.catalog__page {
	padding: 60px 0px;
}

.color__blue {
	color: #546DFC !important;
}

.catalog__elements {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	width: 70%;
}

.catalog__page__blocks {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.catalog__mobile__filter {
	display: none;
}

@media (max-width: 1000px){
	.catalog__elements{
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px){
	.catalog__elements{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 726px) {
	.catalog__page__blocks {
		display: block;
	}

	.catalog__elements {
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
		width: 100%;
		padding-bottom: 50px;
	}

	.filter-box {
		display: none;
		opacity: 0;
		transition: opacity .3s ease;
	}

	.filter-box.show {
		display: block;
		opacity: 1;
	}

	.catalog__page {
		padding: 0;
	}

	.catalog__mobile__filter {
		padding-bottom: 30px;
		display: flex;
		justify-content: space-between;
	}

	.filter__mobile__items a {
		color: #000;
		font-family: Tilda;
		font-weight: 600;
		font-size: 20px;
		text-decoration: none;
	}

	.policy__block__title h1 {
		font-size: 30px;
	}

	.filter__mobile__items a::after {
		content: "";
		position: absolute;
		background-image: url(../img/filter.png);
		background-repeat: no-repeat;
		width: 30px;
		height: 30px;
		background-position: center;
	}

	.mobile__search {
		width: 70%;
		padding: 0px 0px 4px 34px;
	}

	.mobile__search {
		float: right;
	}

	.search__img {
		left: 10px;
	}

	.mobile__search__img {
		left: 46px;
	}

	.search__wrap.mobile__search {
		display: block;
		width: 100%;
	}
}