.rp-product-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.rps-filter-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rps-filter-group__label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rps-filter-group__options {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.rps-filter-option {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	background: #fff;
	font-size: 13px;
	line-height: 1.4;
	cursor: pointer;
	transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}

.rps-filter-option:hover {
	border-color: #9ca3af;
}

.rps-filter-option--active {
	background-color: #111;
	border-color: #111;
	color: #fff;
}

.rps-loading {
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.2s;
}

.rps-no-results {
	padding: 40px 20px;
	text-align: center;
}

.rps-no-results p {
	font-size: 15px;
	color: #6b7280;
}
