.pf-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin: 8px 0 18px;
	position: relative;
	z-index: 5;
}

.pf-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.pf-group {
	position: relative;
}

.pf-btn {
	height: 34px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	font-size: 13px;
	color: #222;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.pf-sort-trigger:hover{
	background-color: #f56600;
}
.pf-sort-trigger:hover .pf-sort-current{
	color: #fff
}

.pf-btn:hover,
.pf-btn:focus{
	background-color: #f56600;
}

.pf-btn:focus svg,
.pf-btn:hover svg{
	fill: #fff;
}

.pf-btn[aria-expanded="true"] {
	border-color: #ff6a00;
}

.pf-pill-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: #ffa666;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}

.pf-caret {
	display: flex;
	align-items: center;
}

.pf-caret svg{
	width: 8px;
}

.pf-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 210px;
	max-height: 280px;
	overflow: auto;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	padding: 8px 10px;
	z-index: 999;
}

.pf-search-wrap {
	position: sticky;
	top: -8px;
	background: #fff;
	padding: 0 0 8px;
}

.pf-search {
	width: 100%;
	height: 32px;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 0 10px;
	font-size: 13px;
}

.pf-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 4px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
}

.pf-option.is-selected {
	background: #fff7f1;
	border-radius: 6px;
}

.pf-option input {
	margin: 0;
}

.pf-meta {
	font-size: 13px;
	color: #666;
	margin-left: 4px;
}

.pf-clear {
	height: 34px;
	padding: 0 12px;
	border: 1px solid #ffd6bf;
	border-radius: 6px;
	background: #fff7f1;
	color: #ff6a00;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.pf-right {
	margin-left: auto;
}

.pf-sort {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.pf-sort-trigger {
	height: 34px;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 0 12px;
	background: #fff;
	font-size: 13px;
	color: #222;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.pf-sort-current {

}

.pf-sort-panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 170px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	padding: 6px;
	z-index: 20;
}

.pf-sort-option {
	width: 100%;
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 8px;
	border-radius: 6px;
	font-size: 13px;
	color: #333;
	cursor: pointer;
	text-align: left;
}

.pf-sort-option:hover {
	background: #f7f7f7;
	color: #222;
}

.pf-sort-option.is-selected {
	color: #ff6a00;
	font-weight: 600;
}

.pf-sort-check {
	font-size: 12px;
}

@media (max-width: 767px) {
	.pf-wrap {
		flex-direction: column;
		gap: 10px;
	}
	.pf-right {
		margin-left: 0;
		width: 100% !important;
	}
	.pf-sort-trigger{
		width: 100%;
		justify-content: space-between;
	}
	.pf-left{
		flex-direction: column;
		align-items: start;
		width: 100%;
	}
	.pf-sort,
	.pf-group,
	.pf-btn{
		width: 100% !important;
		justify-content: space-between;
	}
	.pf-sort-current{
		display: block;
		margin: 0 0 0 auto
	}
}

