.filter-products-tion {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;

}

.filter-products-tion .breadcrumb {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
}

.filter-products-tion .breadcrumb a {
	color: #666;
	text-decoration: none;
}

.filter-products-tion .breadcrumb a:hover {
	color: #333;
}

.filter-products-tion .title {
	font-size: 24px;
	font-weight: 600;
	color: #666;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.filter-section,
.sort-section {
	background: url(../images/down-arrow.svg) no-repeat center right/18px;
	display: flex;
	align-items: center;
	gap: 0px 20px;
	position: relative;
	border: 1px solid #ccc;
	border: 1px solid #ccc;
	padding: 3px 20px 3px 10px;
	border-radius: 5px;
	cursor: pointer;
}

.filter-section.open .filter-buttons,
.sort-section.open .filter-buttons {
	visibility: inherit;
	opacity: 1;
}

.filter-products-tion .filter-label {
	font-weight: 400;
	color: #333;
	margin-bottom: 0px;
	font-size: 14px;
}

.filter-products-tion .filter-buttons {
	display: flex;
	flex-wrap: wrap;
	visibility: hidden;
	opacity: 0;
	align-items: center;
	flex-direction: column;
	left: 0;
	top: 100%;
	max-width: 250px;
	min-width: 100%;
	width: max-content;
	position: absolute;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 0 3px #0000003b;
	border: 1px solid lightgray;
	z-index: 10;
}

.filter-products-tion .filter-button {
	padding: 5px 13px;
	justify-content: flex-start;
	background-color: #fff;
	color: #666;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	width: 100%;
	z-index: 100;
}

.filter-products-tion .filter-button:hover {
	background-color: #f5f5f5;
	border-color: #ccc;
}

.filter-products-tion .filter-button.active {
	background-color: #80b93f;
	color: #fff;
	border-color: #80b93f;
}

.filter-products-tion .filter-button .close {
	margin-left: 8px;
	font-size: 16px;
	line-height: 1;
}

.filter-products-tion .see-more {
	padding: 8px 16px;
	background-color: #666;
	color: #fff;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
}

.filter-products-tion .see-more:hover {
	background-color: #555;
}

.filter-products-tion .see-more::after {
	content: " →";
	margin-left: 5px;
}

.filter-products-tion .divider {
	border-bottom: 1px solid #e0e0e0;
	margin: 10px 0;
}

.filter-products-tion .sort-section {

	display: flex;
	align-items: center;
	gap: 0px 15px;
}

.filter-products-tion .sort-label {
	font-weight: 500;
	color: #333;
	margin-bottom: 0px;
	font-size: 16px;
}

button.filter-button .close {
	display: none;
}

button.filter-button.active .close {
	display: block;
}

.pagination {
	margin-top: 20px;
}

@media (max-width: 767px) {
	.filter-products-tion {
		padding: 0;
		display: none;
	}

	.filter-products-tion .title {
		font-size: 20px;
	}

	.filter-products-tion .filter-buttons {}

	.filter-products-tion .filter-button {
		font-size: 12px;
		padding: 2px 10px;
	}

	.filter-products-tion .filter-section {
		display: block;
		margin-bottom: 10px;
	}

	.filter-products-tion .filter-label {
		margin-bottom: 5px;
	}

	.filter-products-tion .sort-section {
		display: block;
	}

	.product-column {
		margin-top: 0px;
	}
}
