/**
 * Sollu — Filtros para WooCommerce (front-end).
 * Estilo minimalista (iOS-like). Cada componente recebe suas variáveis
 * --pf-* no próprio id (#sollu-flt-{id}); as globais (--pf-g-*) vêm do :root.
 */

/* ------------------------------------------------------------------ */
/* Base                                                                */
/* ------------------------------------------------------------------ */
.sollu-flt,
.sollu-flt-toolbar,
.sollu-flt-chips-standalone,
.sollu-flt-drawer,
.sollu-flt-fab,
.sollu-flt-message,
.sollu-flt-pagination {
	--pf-accent: #6366f1;
	--pf-text: #1d1d1f;
	--pf-muted: #8e8e93;
	--pf-bg: transparent;
	--pf-border: #e5e5ea;
	--pf-active-bg: #6366f1;
	--pf-active-fg: #ffffff;
	--pf-hover: #f5f5f7;
	--pf-track: #e5e5ea;
	--pf-fill: #6366f1;
	--pf-handle: #ffffff;
	--pf-handle-b: #6366f1;
	--pf-track-h: 4px;
	--pf-handle-s: 20px;
	--pf-radius: 12px;
	--pf-radius-o: 999px;
	--pf-title-fs: 15px;
	--pf-title-fw: 600;
	--pf-title-tt: none;
	--pf-shadow: none;
	--pf-outline: 0;
	--pf-font: inherit;
	--pf-z: 99000;
	--pf-gap: 8px;
	--pf-fs: 14px;
	--pf-sw: 32px;
	--pf-pad: 16px;
	--pf-cols: 2;
	--pf-drawer-w: 86%;
	--pf-fab-off: 20px;
	box-sizing: border-box;
	font-family: var(--pf-font);
	color: var(--pf-text);
	-webkit-font-smoothing: antialiased;
}
.sollu-flt *,
.sollu-flt *::before,
.sollu-flt *::after,
.sollu-flt-drawer *,
.sollu-flt-toolbar *,
.sollu-flt-chips *,
.sollu-flt-pagination * {
	box-sizing: border-box;
}
.sollu-flt [hidden],
.sollu-flt-toolbar [hidden],
.sollu-flt-chips[hidden],
.sollu-flt-drawer[hidden],
.sollu-flt-backdrop[hidden],
.sollu-flt-fab[hidden],
.sollu-flt-tb-badge[hidden],
.sollu-flt-fab-badge[hidden],
.sollu-flt-pagination[hidden] {
	display: none !important;
}
/* :where() zera a especificidade: as classes de cada botão (título, chips, etc.) sempre vencem este reset. */
:where(.sollu-flt, .sollu-flt-drawer, .sollu-flt-toolbar, .sollu-flt-chips, .sollu-flt-pagination) button,
.sollu-flt-fab {
	font: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.sollu-flt button:focus-visible,
.sollu-flt-toolbar button:focus-visible,
.sollu-flt-chip:focus-visible,
.sollu-flt-page:focus-visible,
.sollu-flt-fab:focus-visible,
.sollu-flt-drawer button:focus-visible,
.sollu-flt input:focus-visible,
.sollu-flt select:focus-visible {
	outline: 2px solid var(--pf-accent);
	outline-offset: 2px;
}
.sollu-flt-label-sr {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ------------------------------------------------------------------ */
/* Componente                                                          */
/* ------------------------------------------------------------------ */
.sollu-flt {
	position: relative;
	background: var(--pf-bg);
	border: var(--pf-outline);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	padding: var(--pf-pad);
	font-size: var(--pf-fs);
	line-height: 1.4;
	margin: 0 0 var(--pf-gap);
}
.sollu-flt.sollu-flt-type-toolbar {
	padding: 0;
	margin: 0 0 16px;
}
.sollu-flt-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
}
.sollu-flt-title {
	flex: 1 1 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--pf-text);
	font-size: var(--pf-title-fs);
	font-weight: var(--pf-title-fw);
	text-transform: var(--pf-title-tt);
	text-align: left;
	cursor: default;
}
.sollu-flt.is-collapsible .sollu-flt-title {
	cursor: pointer;
}
.sollu-flt-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--pf-active-bg);
	color: var(--pf-active-fg);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}
.sollu-flt-clear {
	border: 0;
	background: transparent;
	color: var(--pf-muted);
	font-size: 12px;
	padding: 4px 6px;
	border-radius: 8px;
	transition: color .15s, background .15s;
}
.sollu-flt-clear:hover {
	color: var(--pf-accent);
	background: var(--pf-hover);
}
.sollu-flt-chev {
	display: inline-flex;
	color: var(--pf-muted);
	transition: transform .25s ease;
}
.sollu-flt.is-collapsed .sollu-flt-chev {
	transform: rotate(-90deg);
}
.sollu-flt.is-collapsed .sollu-flt-head {
	margin-bottom: 0;
}
.sollu-flt.is-collapsed .sollu-flt-body {
	display: none;
}
.sollu-flt-body {
	position: relative;
}
.sollu-flt-empty {
	color: var(--pf-muted);
	font-size: 13px;
	padding: 6px 0;
}

/* Botão aplicar (modo manual) */
.sollu-flt-apply {
	display: block;
	width: 100%;
	margin-top: 12px;
	padding: 11px 16px;
	border: 0;
	border-radius: var(--pf-radius);
	background: var(--pf-active-bg);
	color: var(--pf-active-fg);
	font-weight: 600;
	opacity: .6;
	transition: opacity .15s, transform .15s;
}
.sollu-flt.has-pending .sollu-flt-apply {
	opacity: 1;
}
.sollu-flt-apply:active {
	transform: scale(.98);
}

/* ------------------------------------------------------------------ */
/* Opções                                                              */
/* ------------------------------------------------------------------ */
.sollu-flt-opts {
	display: flex;
	flex-direction: column;
	gap: var(--pf-gap);
	margin: 0;
	padding: 0;
}
.sollu-flt-opt {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 4px 2px;
	border-radius: 8px;
	cursor: pointer;
	user-select: none;
	transition: background .15s, color .15s, transform .15s;
}
.sollu-flt-opt:hover {
	background: var(--pf-hover);
}
.sollu-flt-opt .sollu-flt-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	pointer-events: none;
}
.sollu-flt-opt.is-disabled {
	opacity: .4;
	cursor: not-allowed;
}
.sollu-flt-opt.is-overflow,
.sollu-flt-node.is-overflow {
	display: none;
}
.sollu-flt-opts.is-expanded .sollu-flt-opt.is-overflow,
.sollu-flt-opts.is-searching .sollu-flt-opt.is-overflow {
	display: flex;
}
.sollu-flt-opts.is-expanded .sollu-flt-node.is-overflow,
.sollu-flt-opts.is-searching .sollu-flt-node.is-overflow {
	display: block;
}
.sollu-flt-opt.is-filtered-out,
.sollu-flt-node.is-filtered-out {
	display: none !important;
}
.sollu-flt-label {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.sollu-flt-count {
	flex: 0 0 auto;
	color: var(--pf-muted);
	font-size: .85em;
	font-variant-numeric: tabular-nums;
}
.sollu-flt-opt.is-depth-1 { padding-left: 18px; }
.sollu-flt-opt.is-depth-2 { padding-left: 34px; }
.sollu-flt-opt.is-depth-3 { padding-left: 50px; }

/* Caixa (checkbox/radio) */
.sollu-flt-box {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border: 1.5px solid var(--pf-border);
	border-radius: 6px;
	background: #fff;
	position: relative;
	transition: background .15s, border-color .15s, transform .15s;
}
.sollu-flt-opt-radio .sollu-flt-box {
	border-radius: 50%;
}
.sollu-flt-box::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 5px;
	height: 9px;
	border: solid var(--pf-active-fg);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transform-origin: center;
	margin-top: 1px;
	transition: transform .15s;
}
.sollu-flt-opt-radio .sollu-flt-box::after {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 50%;
	background: var(--pf-active-fg);
	margin-top: auto;
	transform: scale(0);
}
.sollu-flt-input:checked ~ .sollu-flt-box {
	background: var(--pf-active-bg);
	border-color: var(--pf-active-bg);
}
.sollu-flt-input:checked ~ .sollu-flt-box::after {
	transform: rotate(45deg) scale(1);
}
.sollu-flt-opt-radio .sollu-flt-input:checked ~ .sollu-flt-box::after {
	transform: scale(1);
}
.sollu-flt-input:focus-visible ~ .sollu-flt-box {
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf-accent) 30%, transparent);
}

/* Interruptor */
.sollu-flt-switch {
	flex: 0 0 auto;
	width: 38px;
	height: 22px;
	border-radius: 999px;
	background: var(--pf-border);
	position: relative;
	transition: background .2s;
}
.sollu-flt-switch::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
	transition: transform .2s;
}
.sollu-flt-input:checked ~ .sollu-flt-switch {
	background: var(--pf-active-bg);
}
.sollu-flt-input:checked ~ .sollu-flt-switch::after {
	transform: translateX(16px);
}

/* Pills / botões */
.sollu-flt-display-pills .sollu-flt-opts {
	flex-direction: row;
	flex-wrap: wrap;
}
.sollu-flt-opt-pills,
.sollu-flt-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1.5px solid var(--pf-border);
	border-radius: var(--pf-radius-o);
	background: #fff;
	color: var(--pf-text);
	font-size: var(--pf-fs);
	line-height: 1.2;
	cursor: pointer;
	transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.sollu-flt-opt-pills:hover,
.sollu-flt-pill:hover {
	border-color: var(--pf-accent);
	background: var(--pf-hover);
}
.sollu-flt-opt-pills .sollu-flt-label {
	flex: 0 1 auto;
}
.sollu-flt-opt-pills.is-active,
.sollu-flt-pill.is-on {
	background: var(--pf-active-bg);
	border-color: var(--pf-active-bg);
	color: var(--pf-active-fg);
}
.sollu-flt-opt-pills.is-active .sollu-flt-count,
.sollu-flt-pill.is-on .sollu-flt-count {
	color: inherit;
	opacity: .8;
}
.sollu-flt-pill input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* Swatches (cor / imagem) */
.sollu-flt-display-color .sollu-flt-opts,
.sollu-flt-display-image .sollu-flt-opts {
	flex-direction: row;
	flex-wrap: wrap;
}
.sollu-flt-opt-color,
.sollu-flt-opt-image {
	padding: 2px;
	border-radius: 999px;
	flex-direction: column;
	gap: 6px;
	align-self: flex-start;
}
.sollu-flt-opt-color:hover,
.sollu-flt-opt-image:hover {
	background: transparent;
}
.sollu-flt-opt-color .sollu-flt-label.is-side,
.sollu-flt-opt-image .sollu-flt-label.is-side {
	white-space: normal;
}
.sollu-flt-opt-color:has(.is-side),
.sollu-flt-opt-image:has(.is-side) {
	flex-direction: row;
	border-radius: 999px;
	padding: 2px 12px 2px 2px;
}
.sollu-flt-swatch {
	position: relative;
	display: block;
	width: var(--pf-sw);
	height: var(--pf-sw);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--pf-border);
	background-size: cover;
	background-position: center;
	transition: transform .15s, box-shadow .15s;
}
.sollu-flt-swatch.is-circle { border-radius: 50%; }
.sollu-flt-swatch.is-rounded { border-radius: 8px; }
.sollu-flt-swatch.is-square { border-radius: 2px; }
.sollu-flt-opt:hover .sollu-flt-swatch {
	transform: scale(1.06);
}
.sollu-flt-input:checked ~ .sollu-flt-swatch {
	box-shadow: 0 0 0 2px var(--pf-accent);
}
.sollu-flt-swatch-check {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 40%;
	height: 22%;
	border: solid #fff;
	border-width: 0 0 2.5px 2.5px;
	transform: translateY(-20%) rotate(-45deg) scale(0);
	filter: drop-shadow(0 0 1px rgba(0, 0, 0, .7));
	transition: transform .15s;
}
.sollu-flt-input:checked ~ .sollu-flt-swatch .sollu-flt-swatch-check {
	transform: translateY(-20%) rotate(-45deg) scale(1);
}
.sollu-flt-swatch[data-label]:not(:has(~ .sollu-flt-label))::after {
	content: attr(data-label);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	transform: translateX(-50%) translateY(4px);
	background: var(--pf-text);
	color: #fff;
	font-size: 11px;
	line-height: 1;
	padding: 6px 8px;
	border-radius: 6px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity .15s, transform .15s;
	z-index: 3;
}
.sollu-flt-opt:hover .sollu-flt-swatch[data-label]:not(:has(~ .sollu-flt-label))::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.sollu-flt-label.is-below {
	font-size: 12px;
	text-align: center;
	white-space: normal;
	max-width: calc(var(--pf-sw) + 24px);
}

/* Estrelas */
.sollu-flt-stars {
	display: inline-flex;
	gap: 2px;
	flex: 1 1 auto;
}
.sollu-flt-stars i {
	display: inline-flex;
	width: 16px;
	height: 16px;
	color: var(--pf-border);
}
.sollu-flt-stars i.is-on {
	color: #f5a524;
}
.sollu-flt-stars svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* Árvore */
.sollu-flt-node {
	position: relative;
}
.sollu-flt-node > .sollu-flt-opt {
	padding-right: 32px;
}
.sollu-flt-caret {
	position: absolute;
	top: 3px;
	right: 0;
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--pf-muted);
	transition: transform .2s, background .15s;
}
.sollu-flt-caret:hover {
	background: var(--pf-hover);
}
.sollu-flt-node.is-open > .sollu-flt-caret {
	transform: rotate(180deg);
}
.sollu-flt-children {
	display: none;
	flex-direction: column;
	gap: var(--pf-gap);
	margin-top: var(--pf-gap);
	padding-left: 14px;
	border-left: 1px solid var(--pf-border);
	margin-left: 8px;
}
.sollu-flt-node.is-open > .sollu-flt-children {
	display: flex;
}

/* Ver mais */
.sollu-flt-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 10px;
	padding: 4px 0;
	border: 0;
	background: transparent;
	color: var(--pf-accent);
	font-size: 13px;
	font-weight: 600;
}
.sollu-flt-more-n {
	color: var(--pf-muted);
	font-weight: 400;
}
.sollu-flt-more:hover {
	text-decoration: underline;
}

/* Busca dentro da lista */
.sollu-flt-within {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.sollu-flt-within svg {
	position: absolute;
	left: 10px;
	color: var(--pf-muted);
	pointer-events: none;
}
.sollu-flt-within-input {
	width: 100%;
	height: 36px;
	padding: 0 10px 0 30px;
	border: 1px solid var(--pf-border);
	border-radius: 10px;
	background: #fff;
	color: var(--pf-text);
	font-size: 13px;
	outline: 0;
	appearance: none;
	-webkit-appearance: none;
}
.sollu-flt-within-input:focus {
	border-color: var(--pf-accent);
}

/* Caixa de busca de produtos */
.sollu-flt-searchbox {
	position: relative;
	display: flex;
	align-items: center;
}
.sollu-flt-searchbox > svg {
	position: absolute;
	left: 12px;
	color: var(--pf-muted);
	pointer-events: none;
}
.sollu-flt-search {
	width: 100%;
	height: 44px;
	padding: 0 40px 0 38px;
	border: 1px solid var(--pf-border);
	border-radius: var(--pf-radius);
	background: #fff;
	color: var(--pf-text);
	font-size: var(--pf-fs);
	outline: 0;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color .15s, box-shadow .15s;
}
.sollu-flt-search:focus {
	border-color: var(--pf-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf-accent) 20%, transparent);
}
.sollu-flt-search::-webkit-search-cancel-button {
	display: none;
}
.sollu-flt-search-clear {
	position: absolute;
	right: 8px;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 50%;
	background: var(--pf-hover);
	color: var(--pf-muted);
	font-size: 18px;
	line-height: 1;
	display: none;
	align-items: center;
	justify-content: center;
}
.sollu-flt-searchbox.has-value .sollu-flt-search-clear,
.sollu-flt-search:not(:placeholder-shown) ~ .sollu-flt-search-clear {
	display: inline-flex;
}

/* Select nativo */
.sollu-flt-select {
	width: 100%;
	height: 40px;
	padding: 0 34px 0 12px;
	border: 1px solid var(--pf-border);
	border-radius: 10px;
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238e8e93' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>") no-repeat right 10px center / 16px;
	color: var(--pf-text);
	font-size: var(--pf-fs);
	appearance: none;
	-webkit-appearance: none;
	outline: 0;
}
.sollu-flt-select:focus {
	border-color: var(--pf-accent);
}

/* Dropdown */
.sollu-flt-dd {
	position: relative;
}
.sollu-flt-dd-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--pf-border);
	border-radius: 10px;
	background: #fff;
	color: var(--pf-text);
	text-align: left;
	transition: border-color .15s;
}
.sollu-flt-dd-btn:hover,
.sollu-flt-dd.is-open .sollu-flt-dd-btn {
	border-color: var(--pf-accent);
}
.sollu-flt-dd-text {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.sollu-flt-dd-btn svg {
	flex: 0 0 auto;
	color: var(--pf-muted);
	transition: transform .2s;
}
.sollu-flt-dd.is-open .sollu-flt-dd-btn svg {
	transform: rotate(180deg);
}
.sollu-flt-dd-menu {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	max-height: 320px;
	overflow: auto;
	padding: 10px;
	border: 1px solid var(--pf-border);
	border-radius: var(--pf-radius);
	background: #fff;
	box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
	z-index: 20;
}
.sollu-flt-dd.is-open .sollu-flt-dd-menu {
	display: block;
	animation: sollu-flt-pop .18s ease;
}
@keyframes sollu-flt-pop {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ */
/* Slider de faixa                                                     */
/* ------------------------------------------------------------------ */
.sollu-flt-range {
	padding: 6px 2px 2px;
}
.sollu-flt-range-track {
	position: relative;
	height: var(--pf-handle-s);
	margin: 4px calc(var(--pf-handle-s) / 2 * -1 + 8px) 10px;
}
.sollu-flt-range-track::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: var(--pf-track-h);
	transform: translateY(-50%);
	border-radius: 999px;
	background: var(--pf-track);
}
.sollu-flt-range-fill {
	position: absolute;
	top: 50%;
	height: var(--pf-track-h);
	transform: translateY(-50%);
	border-radius: 999px;
	background: var(--pf-fill);
	left: 0;
	right: 0;
}
.sollu-flt-range-track input[type="range"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	pointer-events: none;
	outline: 0;
	z-index: 3;
}
.sollu-flt-range-track input[type="range"]::-webkit-slider-runnable-track {
	background: transparent;
	height: 100%;
}
.sollu-flt-range-track input[type="range"]::-moz-range-track {
	background: transparent;
	height: 100%;
}
.sollu-flt-range-track input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: var(--pf-handle-s);
	height: var(--pf-handle-s);
	border-radius: 50%;
	background: var(--pf-handle);
	border: 2px solid var(--pf-handle-b);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
	pointer-events: auto;
	cursor: grab;
	transition: transform .12s;
}
.sollu-flt-range-track input[type="range"]::-moz-range-thumb {
	width: var(--pf-handle-s);
	height: var(--pf-handle-s);
	border-radius: 50%;
	background: var(--pf-handle);
	border: 2px solid var(--pf-handle-b);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
	pointer-events: auto;
	cursor: grab;
}
.sollu-flt-range-track input[type="range"]:active::-webkit-slider-thumb {
	transform: scale(1.12);
	cursor: grabbing;
}
.sollu-flt-range-track input[type="range"]:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--pf-accent) 30%, transparent);
}
.sollu-flt-range-inputs {
	display: flex;
	align-items: center;
	gap: 8px;
}
.sollu-flt-range-inputs label {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	gap: 4px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--pf-border);
	border-radius: 10px;
	background: #fff;
	margin: 0;
	font-size: 13px;
	color: var(--pf-muted);
}
.sollu-flt-range-inputs label:focus-within {
	border-color: var(--pf-accent);
}
.sollu-flt-range-inputs input {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	border: 0;
	background: transparent;
	color: var(--pf-text);
	font-size: 14px;
	outline: 0;
	padding: 0;
	appearance: textfield;
	-moz-appearance: textfield;
}
.sollu-flt-range-inputs input::-webkit-outer-spin-button,
.sollu-flt-range-inputs input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.sollu-flt-range-inputs i {
	color: var(--pf-muted);
	font-style: normal;
}
.sollu-flt-range-vals {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--pf-muted);
	font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ */
/* Barra de ferramentas                                                */
/* ------------------------------------------------------------------ */
.sollu-flt-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	padding: 10px 0;
	border-bottom: 1px solid var(--pf-border);
	font-size: var(--pf-fs);
}
.sollu-flt-toolbar.is-align-space { justify-content: space-between; }
.sollu-flt-toolbar.is-align-left { justify-content: flex-start; }
.sollu-flt-toolbar.is-align-right { justify-content: flex-end; }
.sollu-flt-toolbar.is-align-center { justify-content: center; }
.sollu-flt-toolbar.is-sticky {
	position: sticky;
	top: 0;
	z-index: 30;
	background: #fff;
}
.sollu-flt-toolbar-left,
.sollu-flt-toolbar-right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
}
.sollu-flt-toolbar .sollu-flt-chips {
	flex: 1 1 100%;
	order: 10;
}
.sollu-flt-counter {
	color: var(--pf-muted);
	font-size: 13px;
}
.sollu-flt-tb-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 38px;
	padding: 0 14px;
	border: 1px solid var(--pf-border);
	border-radius: var(--pf-radius-o);
	background: #fff;
	color: var(--pf-text);
	font-size: 13px;
	font-weight: 600;
	position: relative;
	transition: border-color .15s, background .15s;
}
.sollu-flt-tb-btn:hover {
	border-color: var(--pf-accent);
	background: var(--pf-hover);
}
.sollu-flt-tb-btn.sollu-flt-clear-all {
	font-weight: 500;
	color: var(--pf-muted);
}
.sollu-flt-toolbar .sollu-flt-open-drawer {
	display: none;
}
.sollu-flt-tb-badge,
.sollu-flt-fab-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--pf-g-badge-bg, #6366f1);
	color: var(--pf-g-badge-fg, #fff);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	font-style: normal;
}
.sollu-flt-temporal {
	display: inline-flex;
	gap: 6px;
	flex-wrap: wrap;
}
.sollu-flt-temporal .sollu-flt-pill {
	padding: 6px 12px;
	font-size: 13px;
	position: relative;
}
.sollu-flt-tb-field {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 13px;
}
.sollu-flt-tb-label {
	color: var(--pf-muted);
	white-space: nowrap;
}
.sollu-flt-tb-field .sollu-flt-select {
	width: auto;
	min-width: 150px;
	height: 38px;
}
.sollu-flt-tb-perpage .sollu-flt-select {
	min-width: 80px;
}
.sollu-flt-views {
	display: inline-flex;
	gap: 2px;
	padding: 3px;
	border: 1px solid var(--pf-border);
	border-radius: 10px;
	background: #fff;
}
.sollu-flt-view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 30px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--pf-muted);
	transition: background .15s, color .15s;
}
.sollu-flt-view:hover {
	color: var(--pf-text);
}
.sollu-flt-view.is-on {
	background: var(--pf-active-bg);
	color: var(--pf-active-fg);
}

/* Chips */
.sollu-flt-chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}
.sollu-flt-chips-standalone {
	margin: 0 0 14px;
}
.sollu-flt-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 30px;
	padding: 0 8px 0 12px;
	border: 1px solid var(--pf-border);
	border-radius: 999px;
	background: var(--pf-hover);
	color: var(--pf-text);
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
	transition: background .15s, border-color .15s, color .15s;
}
.sollu-flt-chip small {
	color: var(--pf-muted);
	font-size: 12px;
}
.sollu-flt-chip i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .06);
	font-style: normal;
	font-size: 14px;
	line-height: 1;
	transition: background .15s;
}
.sollu-flt-chip:hover {
	border-color: var(--pf-accent);
}
.sollu-flt-chip:hover i {
	background: var(--pf-accent);
	color: #fff;
}
.sollu-flt-chip-clear {
	background: transparent;
	border-color: transparent;
	color: var(--pf-accent);
	font-weight: 600;
	padding: 0 8px;
}
.sollu-flt-chip-clear:hover {
	text-decoration: underline;
	border-color: transparent;
}

/* Barra de filtros (grupo) */
.sollu-flt-bar {
	display: flex;
	gap: var(--pf-gap, 16px);
}
.sollu-flt-bar.is-vertical {
	flex-direction: column;
}
.sollu-flt-bar.is-horizontal {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
}
.sollu-flt-bar.is-horizontal > .sollu-flt {
	flex: 1 1 200px;
	min-width: 0;
}
.sollu-flt-bar.is-horizontal > .sollu-flt-type-toolbar {
	flex: 1 1 100%;
}

/* ------------------------------------------------------------------ */
/* Resultados, skeleton, animação, lista                               */
/* ------------------------------------------------------------------ */
.sollu-flt-results-wrap {
	position: relative;
}
ul.products.is-loading:not(:has(.sollu-flt-skeleton)),
.sollu-flt-results.is-loading:not(:has(.sollu-flt-skeleton)) {
	opacity: .45;
	pointer-events: none;
	transition: opacity .2s;
}
.sollu-flt-skeleton {
	list-style: none;
	pointer-events: none;
}
.sollu-flt-skeleton .sollu-flt-sk-img,
.sollu-flt-skeleton .sollu-flt-sk-line {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: var(--pf-g-sk-bg, #f2f2f7);
}
.sollu-flt-skeleton .sollu-flt-sk-img {
	aspect-ratio: 1 / 1;
	width: 100%;
	margin-bottom: 12px;
}
.sollu-flt-skeleton .sollu-flt-sk-line {
	height: 14px;
	margin-bottom: 8px;
	border-radius: 6px;
	width: 80%;
}
.sollu-flt-skeleton .sollu-flt-sk-line.is-short {
	width: 45%;
}
.sollu-flt-skeleton .sollu-flt-sk-img::after,
.sollu-flt-skeleton .sollu-flt-sk-line::after {
	content: "";
	position: absolute;
	inset: 0;
	transform: translateX(-100%);
	background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--pf-g-sk-hi, #fff) 70%, transparent), transparent);
	animation: sollu-flt-shimmer 1.3s infinite;
}
@keyframes sollu-flt-shimmer {
	to { transform: translateX(100%); }
}

/* Animações de entrada */
.sollu-flt-anim-fade > * { opacity: 0; transition: opacity .35s ease; }
.sollu-flt-anim-fade.is-in > * { opacity: 1; }
.sollu-flt-anim-slide > * { opacity: 0; transform: translateY(14px); transition: opacity .35s ease, transform .35s ease; }
.sollu-flt-anim-slide.is-in > * { opacity: 1; transform: none; }
.sollu-flt-anim-scale > * { opacity: 0; transform: scale(.96); transition: opacity .3s ease, transform .3s ease; }
.sollu-flt-anim-scale.is-in > * { opacity: 1; transform: none; }

/* Visualização em lista */
ul.products.sollu-flt-view-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
ul.products.sollu-flt-view-list > li.product {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	display: grid;
	grid-template-columns: minmax(120px, 28%) 1fr;
	grid-auto-rows: min-content;
	column-gap: 20px;
	align-items: start;
	text-align: left;
}
ul.products.sollu-flt-view-list > li.product > a.woocommerce-LoopProduct-link > img,
ul.products.sollu-flt-view-list > li.product > a.woocommerce-LoopProduct-link img,
ul.products.sollu-flt-view-list > li.product > img {
	width: 100%;
	margin: 0;
}
ul.products.sollu-flt-view-list > li.product > a.woocommerce-LoopProduct-link {
	grid-row: 1 / span 6;
	grid-column: 1;
}
ul.products.sollu-flt-view-list > li.product > a.woocommerce-LoopProduct-link .woocommerce-loop-product__title,
ul.products.sollu-flt-view-list > li.product > a.woocommerce-LoopProduct-link .price {
	display: block;
}
ul.products.sollu-flt-view-list > li.product > *:not(a.woocommerce-LoopProduct-link) {
	grid-column: 2;
}
ul.products.sollu-flt-view-list > li.product .button {
	margin-top: 8px;
}

/* Sem resultados */
li.sollu-flt-no-results {
	list-style: none;
	width: 100% !important;
	grid-column: 1 / -1;
	float: none !important;
	text-align: center;
	padding: 48px 20px;
	color: var(--pf-muted, #8e8e93);
}
li.sollu-flt-no-results p {
	margin: 0 0 16px;
	font-size: 15px;
}

/* Botões utilitários */
.sollu-flt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 44px;
	padding: 0 20px;
	border: 0;
	border-radius: 12px;
	background: var(--pf-active-bg, #6366f1);
	color: var(--pf-active-fg, #fff);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	transition: transform .15s, opacity .15s;
}
.sollu-flt-btn:hover {
	opacity: .92;
}
.sollu-flt-btn:active {
	transform: scale(.98);
}
.sollu-flt-btn-ghost {
	background: transparent;
	color: var(--pf-text, #1d1d1f);
	border: 1px solid var(--pf-border, #e5e5ea);
}

/* Paginação */
.sollu-flt-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 28px 0 8px;
	clear: both;
}
.sollu-flt-page {
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--pf-border);
	border-radius: 10px;
	background: #fff;
	color: var(--pf-text);
	font-size: 14px;
	font-weight: 500;
	transition: background .15s, border-color .15s, color .15s;
}
.sollu-flt-page:hover:not([disabled]) {
	border-color: var(--pf-accent);
}
.sollu-flt-page.is-on {
	background: var(--pf-active-bg);
	border-color: var(--pf-active-bg);
	color: var(--pf-active-fg);
}
.sollu-flt-page[disabled] {
	opacity: .35;
	cursor: default;
}
.sollu-flt-page-gap {
	color: var(--pf-muted);
	padding: 0 4px;
}

/* Mensagens (Flow / erro) */
.sollu-flt-message {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid transparent;
	font-size: 14px;
	line-height: 1.45;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .25s, transform .25s;
}
.sollu-flt-message.is-in {
	opacity: 1;
	transform: none;
}
.sollu-flt-message-text {
	flex: 1 1 auto;
}
.sollu-flt-message-text p:last-child {
	margin-bottom: 0;
}
.sollu-flt-message-close {
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	color: inherit;
	opacity: .6;
	font-size: 18px;
	line-height: 1;
	padding: 0 2px;
}
.sollu-flt-message-close:hover {
	opacity: 1;
}
.sollu-flt-message.is-info { background: #eef2ff; border-color: #c7d2fe; color: #3730a3; }
.sollu-flt-message.is-success { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.sollu-flt-message.is-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.sollu-flt-message.is-danger { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* ------------------------------------------------------------------ */
/* Gaveta mobile / bottom sheet / FAB                                  */
/* ------------------------------------------------------------------ */
html.sollu-flt-lock,
html.sollu-flt-lock body {
	overflow: hidden;
}
.sollu-flt-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .42);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity .3s ease;
	z-index: calc(var(--pf-z, 99000) - 1);
}
.sollu-flt-backdrop.is-open {
	opacity: 1;
}
.sollu-flt-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	width: var(--pf-drawer-w, 86%);
	max-width: 420px;
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: 0 0 60px rgba(0, 0, 0, .25);
	z-index: var(--pf-z, 99000);
	transition: transform .32s cubic-bezier(.32, .72, 0, 1);
	will-change: transform;
	font-size: 14px;
	color: var(--pf-text);
}
.sollu-flt-drawer.is-left {
	left: 0;
	border-radius: 0 20px 20px 0;
	transform: translateX(-105%);
}
.sollu-flt-drawer.is-right {
	right: 0;
	border-radius: 20px 0 0 20px;
	transform: translateX(105%);
}
.sollu-flt-drawer.is-bottom {
	left: 0;
	right: 0;
	top: auto;
	width: 100%;
	max-width: none;
	max-height: 88vh;
	border-radius: 20px 20px 0 0;
	transform: translateY(105%);
}
.sollu-flt-drawer.is-bottom::before {
	content: "";
	display: block;
	width: 40px;
	height: 4px;
	border-radius: 999px;
	background: #d1d1d6;
	margin: 8px auto 0;
}
.sollu-flt-drawer.is-open {
	transform: none;
}
.sollu-flt-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px 12px;
	border-bottom: 1px solid var(--pf-border);
	flex: 0 0 auto;
}
.sollu-flt-drawer-title {
	font-size: 17px;
	font-weight: 700;
}
.sollu-flt-drawer-close {
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: var(--pf-hover);
	color: var(--pf-text);
	font-size: 20px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.sollu-flt-drawer-body {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 12px 18px;
	overscroll-behavior: contain;
}
.sollu-flt-drawer-body > .sollu-flt {
	padding: 14px 0;
	margin: 0;
	border: 0;
	border-bottom: 1px solid var(--pf-border);
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}
.sollu-flt-drawer-body > .sollu-flt:last-child {
	border-bottom: 0;
}
.sollu-flt-drawer-foot {
	flex: 0 0 auto;
	display: flex;
	gap: 10px;
	padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--pf-border);
	background: #fff;
}
.sollu-flt-drawer-foot .sollu-flt-btn {
	flex: 1 1 auto;
}
.sollu-flt-drawer-foot .sollu-flt-btn-ghost {
	flex: 0 0 auto;
}

/* FAB */
.sollu-flt-fab {
	position: fixed;
	bottom: calc(var(--pf-fab-off, 20px) + env(safe-area-inset-bottom, 0px));
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: var(--pf-g-fab-h, 48px);
	min-width: var(--pf-g-fab-h, 48px);
	padding: 0 20px;
	border: 0;
	border-radius: var(--pf-g-fab-r, 999px);
	background: var(--pf-g-fab-bg, #1d1d1f);
	color: var(--pf-g-fab-fg, #fff);
	box-shadow: var(--pf-g-fab-shadow, 0 10px 30px rgba(0, 0, 0, .22));
	font-size: 14px;
	font-weight: 600;
	z-index: calc(var(--pf-z, 99000) - 2);
	transition: transform .3s cubic-bezier(.32, .72, 0, 1), opacity .3s;
}
.sollu-flt-fab.is-bottom-center {
	left: 50%;
	transform: translateX(-50%);
}
.sollu-flt-fab.is-bottom-right {
	right: var(--pf-fab-off, 20px);
}
.sollu-flt-fab.is-bottom-left {
	left: var(--pf-fab-off, 20px);
}
.sollu-flt-fab.is-circle {
	width: var(--pf-g-fab-h, 48px);
	padding: 0;
	border-radius: 50%;
}
.sollu-flt-fab.is-circle .sollu-flt-fab-text {
	display: none;
}
.sollu-flt-fab.is-bar {
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	border-radius: 0;
	height: calc(var(--pf-g-fab-h, 48px) + 8px);
	padding-bottom: env(safe-area-inset-bottom, 0px);
	transform: none;
}
.sollu-flt-fab.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
}
.sollu-flt-fab.is-bottom-center.is-hidden {
	transform: translateX(-50%) translateY(20px);
}
.sollu-flt-fab .sollu-flt-fab-badge {
	position: absolute;
	top: -6px;
	right: -6px;
}
.sollu-flt-fab.is-pill .sollu-flt-fab-badge,
.sollu-flt-fab.is-bar .sollu-flt-fab-badge {
	position: static;
	margin-left: 2px;
}
.sollu-flt-fab:active {
	transform: scale(.97);
}
.sollu-flt-fab.is-bottom-center:active {
	transform: translateX(-50%) scale(.97);
}

/* Estado ocupado */
html.sollu-flt-busy .sollu-flt-apply,
html.sollu-flt-busy .sollu-flt-drawer-apply {
	opacity: .7;
	pointer-events: none;
}

/* ------------------------------------------------------------------ */
/* Responsivo                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 782px) {
	.sollu-flt-toolbar {
		gap: 8px 10px;
	}
	.sollu-flt-toolbar-right {
		width: 100%;
		justify-content: space-between;
	}
	.sollu-flt-tb-label {
		display: none;
	}
	.sollu-flt-tb-field .sollu-flt-select {
		min-width: 0;
	}
	ul.products.sollu-flt-view-list > li.product {
		grid-template-columns: minmax(96px, 36%) 1fr;
		column-gap: 12px;
	}
	.sollu-flt-bar.is-horizontal > .sollu-flt {
		flex-basis: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sollu-flt *,
	.sollu-flt-drawer,
	.sollu-flt-backdrop,
	.sollu-flt-fab,
	.sollu-flt-anim-fade > *,
	.sollu-flt-anim-slide > *,
	.sollu-flt-anim-scale > * {
		transition: none !important;
		animation: none !important;
	}
}

/* ================================================================== */
/* Grupos de filtros (vários componentes numa unidade)                */
/* ================================================================== */
.sollu-flt-group {
	display: flex;
	flex-direction: column;
	gap: var(--pfg-gap, 16px);
	background: var(--pfg-bg, transparent);
	border: var(--pfg-outline, 0);
	border-radius: var(--pfg-radius, 16px);
	box-shadow: var(--pfg-shadow, none);
	padding: var(--pfg-pad, 0);
	color: var(--pfg-text, #1d1d1f);
	box-sizing: border-box;
	min-width: 0;
}
.sollu-flt-group *,
.sollu-flt-group *::before,
.sollu-flt-group *::after {
	box-sizing: border-box;
}
.sollu-flt-group-items {
	display: flex;
	flex-direction: column;
	gap: var(--pfg-gap, 16px);
	min-width: 0;
}
.sollu-flt-group-items > .sollu-flt {
	margin: 0;
	min-width: 0;
}
.sollu-flt-group.is-horizontal .sollu-flt-group-items {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
}
.sollu-flt-group.is-horizontal .sollu-flt-group-items > .sollu-flt {
	flex: 1 1 220px;
	max-width: 100%;
}
.sollu-flt-group.is-columns .sollu-flt-group-items {
	display: grid;
	grid-template-columns: repeat(var(--pfg-cols, 3), minmax(0, 1fr));
	align-items: start;
}
.sollu-flt-group.has-dividers.is-sidebar .sollu-flt-group-items > .sollu-flt + .sollu-flt {
	border-top: 1px solid var(--pfg-border, #e5e5ea);
	padding-top: var(--pfg-gap, 16px);
}
.sollu-flt-group.has-dividers.is-horizontal .sollu-flt-group-items > .sollu-flt + .sollu-flt,
.sollu-flt-group.has-dividers.is-columns .sollu-flt-group-items > .sollu-flt + .sollu-flt {
	border-left: 1px solid var(--pfg-border, #e5e5ea);
	padding-left: var(--pfg-gap, 16px);
}
.sollu-flt-group-empty {
	padding: 18px;
	border: 1px dashed var(--pfg-border, #e5e5ea);
	border-radius: 12px;
	text-align: center;
	color: var(--pfg-muted, #8e8e93);
	font-size: 13px;
}

/* Chips reunidos do grupo */
.sollu-flt-group-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.sollu-flt-group-chips[hidden] {
	display: none;
}
.sollu-flt-group-chips .sollu-flt-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px 6px 12px;
	border: 0;
	border-radius: 999px;
	background: var(--pfg-chip-bg, #f5f5f7);
	color: var(--pfg-chip-fg, #1d1d1f);
	font: inherit;
	font-size: 13px;
	line-height: 1.2;
	cursor: pointer;
	transition: background .15s, transform .15s;
}
.sollu-flt-group-chips .sollu-flt-chip small {
	color: var(--pfg-muted, #8e8e93);
	font-size: 11.5px;
}
.sollu-flt-group-chips .sollu-flt-chip i {
	font-style: normal;
	font-size: 15px;
	line-height: 1;
	opacity: .6;
}
.sollu-flt-group-chips .sollu-flt-chip:hover {
	background: var(--pfg-border, #e5e5ea);
}
.sollu-flt-group-chips .sollu-flt-chip:hover i {
	opacity: 1;
}

/* Botões do grupo (aplicar / limpar tudo) */
.sollu-flt-group-foot {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}
.sollu-flt-group-foot.is-left {
	justify-content: flex-start;
}
.sollu-flt-group-foot.is-center {
	justify-content: center;
}
.sollu-flt-group-foot.is-stretch > .sollu-flt-btn {
	flex: 1 1 0;
}
.sollu-flt-group-foot .sollu-flt-btn {
	height: var(--pfg-btn-h, 44px);
	border-radius: var(--pfg-btn-radius, 12px);
}
.sollu-flt-group-foot .sollu-flt-group-apply {
	position: relative;
	background: var(--pfg-accent, #6366f1);
	color: var(--pfg-accent-fg, #fff);
	opacity: .6;
	transition: opacity .15s, transform .15s;
}
.sollu-flt-group.has-pending .sollu-flt-group-apply {
	opacity: 1;
}
.sollu-flt-group-apply-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .25);
	font-size: 12px;
	font-weight: 700;
}
.sollu-flt-group-apply-count[hidden] {
	display: none;
}
.sollu-flt-group-foot .sollu-flt-group-clear {
	color: var(--pfg-text, #1d1d1f);
	border-color: var(--pfg-border, #e5e5ea);
}
.sollu-flt-group-foot .sollu-flt-group-clear[hidden] {
	display: none;
}
.sollu-flt-group.has-sticky-foot .sollu-flt-group-foot {
	position: sticky;
	bottom: 0;
	padding: 10px 0;
	background: var(--pfg-bg, transparent);
	z-index: 2;
}
/* Todos os componentes foram para a gaveta no celular: esconde o esqueleto do grupo. */
.sollu-flt-group.is-emptied {
	display: none;
}
.sollu-flt-drawer .sollu-flt-in-group {
	margin: 0;
}
html.sollu-flt-busy .sollu-flt-group-apply {
	pointer-events: none;
	opacity: .6;
}
@media (max-width: 782px) {
	.sollu-flt-group.is-columns .sollu-flt-group-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sollu-flt-group.is-horizontal .sollu-flt-group-items > .sollu-flt {
		flex-basis: 100%;
	}
	.sollu-flt-group.has-dividers.is-horizontal .sollu-flt-group-items > .sollu-flt + .sollu-flt {
		border-left: 0;
		padding-left: 0;
		border-top: 1px solid var(--pfg-border, #e5e5ea);
		padding-top: var(--pfg-gap, 16px);
	}
}
