.cfs-selector {
	background: #f7f7f7;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 18px;
	margin-bottom: 24px;
}
.cfs-selector-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: flex-end;
}
.cfs-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 160px;
}
.cfs-field label {
	font-size: 0.85em;
	font-weight: 600;
}
.cfs-field select {
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #ccc;
}
.cfs-field-btn {
	min-width: auto;
}
#cfs-f-search {
	padding: 9px 20px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
#cfs-f-search:disabled {
	background: #a7c1d9;
	cursor: not-allowed;
}
.cfs-results-heading {
	margin-top: 10px;
}
.cfs-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0;
}
@media (max-width: 900px) {
	.cfs-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.cfs-no-results,
.cfs-error {
	color: #a00;
}
.cfs-loading {
	color: #666;
}
