.ffp-widget,
.ffp-widget * {
	box-sizing: border-box;
}

.ffp-widget {
	--ffp-ink: #101419;
	--ffp-muted: #69707a;
	--ffp-border: #e3e6ea;
	--ffp-surface: #ffffff;
	--ffp-accent: #07131c;
	--ffp-focus: #536dfe;
	--ffp-filter-indicator: #17345f;
	--ffp-filter-indicator-size: 2px;
	--ffp-filter-indicator-width: 100%;
	--ffp-filter-text: #1b1f24;
	--ffp-filter-bg: #ffffff;
	--ffp-filter-border-color: #dde1e7;
	--ffp-filter-radius: 999px;
	--ffp-filter-hover-text: #1b1f24;
	--ffp-filter-hover-bg: #f4f6f8;
	--ffp-filter-hover-border: #b9c0ca;
	--ffp-filter-active-text: #ffffff;
	--ffp-filter-active-bg: #2563eb;
	--ffp-filter-active-border: #2563eb;
	--ffp-filter-icon-size: 17px;
	--ffp-filter-icon-gap: 8px;
	--ffp-mobile-filter-text: #ffffff;
	--ffp-mobile-filter-bg: #07131c;
	--ffp-mobile-filter-border: #07131c;
	position: relative;
	width: 100%;
}

.ffp-widget button,
.ffp-widget input {
	font: inherit;
}

.ffp-widget button {
	-webkit-appearance: none;
	appearance: none;
}

.ffp-intro__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.75rem);
	font-weight: 750;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: var(--ffp-ink);
}

.ffp-intro__description {
	max-width: 720px;
	margin-top: 10px;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ffp-muted);
}

.ffp-filter-bar {
	position: relative;
	z-index: 5;
}

.ffp-filter-bar__inner,
.ffp-filter-chips,
.ffp-mobile-filter-summary {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ffp-filter-bar__inner {
	flex-wrap: nowrap;
}

.ffp-filter-chips {
	position: relative;
	flex-wrap: wrap;
	min-width: 0;
}

[dir="rtl"] .ffp-overflow-menu {
	right: auto;
	left: 0;
}

[dir="rtl"] .ffp-card__arrow svg {
	transform: scaleX(-1);
}

.ffp-chip,
.ffp-mobile-filter-trigger,
.ffp-mobile-active-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ffp-filter-icon-gap);
	min-height: 42px;
	margin: 0;
	padding: 10px 18px;
	border: 1px solid var(--ffp-filter-border-color);
	border-radius: var(--ffp-filter-radius);
	background: var(--ffp-filter-bg);
	color: var(--ffp-filter-text);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ffp-chip:hover,
.ffp-mobile-filter-trigger:hover,
.ffp-mobile-active-trigger:hover {
	border-color: var(--ffp-filter-hover-border);
	background-color: var(--ffp-filter-hover-bg);
	color: var(--ffp-filter-hover-text);
	transform: translateY(-1px);
}

.ffp-chip:focus-visible,
.ffp-mobile-filter-trigger:focus-visible,
.ffp-mobile-active-trigger:focus-visible,
.ffp-page:focus-visible,
.ffp-load-more:focus-visible,
.ffp-sheet button:focus-visible,
.ffp-sheet input:focus-visible + .ffp-sheet__radio {
	outline: 3px solid rgba(83, 109, 254, 0.35);
	outline-offset: 2px;
}

.ffp-chip.is-active {
	border-color: var(--ffp-filter-active-border);
	background: var(--ffp-filter-active-bg);
	color: var(--ffp-filter-active-text);
}

.ffp-chip.is-overflow-hidden {
	display: none;
}

.ffp-more-trigger[hidden] {
	display: none !important;
}

.ffp-more-trigger svg,
.ffp-mobile-filter-trigger svg,
.ffp-mobile-active-trigger svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ffp-more-trigger[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.ffp-overflow-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 20;
	min-width: 210px;
	max-height: 340px;
	padding: 8px;
	overflow-y: auto;
	border: 1px solid #e2e6eb;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(21, 29, 38, 0.16);
}

.ffp-overflow-menu[hidden] {
	display: none;
}

.ffp-overflow-item {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #222a33;
	font-size: 0.92rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.ffp-overflow-item:hover,
.ffp-overflow-item.is-active {
	background: #f1f3f6;
	color: #07131c;
}

.ffp-mobile-filter-summary {
	display: none;
	min-width: 0;
}

.ffp-mobile-active-trigger {
	display: none;
	min-width: 0;
	border-color: var(--ffp-border);
	background: var(--ffp-surface);
	color: #1b1f24;
}

.ffp-mobile-active-label {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ffp-chip {
	position: relative;
	isolation: isolate;
}

.ffp-mobile-filter-trigger {
	display: none;
	border-color: var(--ffp-accent);
	background: var(--ffp-accent);
	color: #fff;
}

.ffp-results {
	position: relative;
	min-height: 120px;
}

.ffp-results::after {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: grid;
	place-items: start center;
	padding-top: 90px;
	background: rgba(255, 255, 255, 0.68);
	backdrop-filter: blur(2px);
	content: "";
	opacity: 0;
	pointer-events: none;
	transition: opacity 160ms ease;
}

.ffp-widget.is-loading .ffp-results::after {
	opacity: 1;
	pointer-events: auto;
}

.ffp-widget.is-loading .ffp-grid {
	opacity: 0.55;
}

.ffp-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	transition: opacity 160ms ease;
}

.ffp-card {
	display: flex;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid #e8eaed;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(24, 31, 40, 0.055);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ffp-card:hover {
	border-color: #d9dde2;
	box-shadow: 0 18px 46px rgba(24, 31, 40, 0.1);
	transform: translateY(-4px);
}

.ffp-card__image {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f2f4f7;
}

.ffp-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.ffp-card:hover .ffp-card__image img {
	transform: scale(1.035);
}

.ffp-card__body {
	display: flex;
	height: 100%;
	padding: 22px;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
}

.ffp-card__badges {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 6px;
}

.ffp-card__badges--above-image {
	padding: 18px 22px 12px;
	margin: 0;
}

.ffp-card__badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border: 1px solid transparent;
	border-radius: 7px;
	background: #eef0ff;
	color: #4057c9;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, filter 160ms ease;
}

.ffp-card__title {
	margin: 0;
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
	font-weight: 720;
	line-height: 1.22;
	letter-spacing: -0.022em;
}

.ffp-card__title a {
	color: #12171c;
	text-decoration-line: none;
	transition-property: color, text-decoration-color, opacity, transform;
	transition-duration: 180ms;
	transition-timing-function: ease;
}

.ffp-card__title a:hover,
.ffp-card__title a:focus-visible {
	text-decoration-line: none;
}

.ffp-card__excerpt {
	margin-top: 10px;
	color: #626a74;
	font-size: 0.94rem;
	line-height: 1.55;
}

.ffp-card__footer {
	display: flex;
	width: 100%;
	margin-top: auto;
	padding-top: 22px;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.ffp-card__meta {
	display: flex;
	min-width: 0;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 14px;
	color: #7a818b;
	font-size: 0.78rem;
	line-height: 1.4;
}

.ffp-card__date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ffp-card__date svg,
.ffp-card__arrow svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ffp-card__reading-time::before {
	margin-right: 10px;
	content: "•";
}

.ffp-card__arrow {
	display: inline-grid;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	color: #5e6670;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.ffp-card__arrow:hover {
	background: #f0f2f5;
	color: #101419;
	transform: translateX(2px);
}

.ffp-empty {
	grid-column: 1 / -1;
	padding: 56px 24px;
	border: 1px dashed #d9dee5;
	border-radius: 16px;
	color: #68717c;
	text-align: center;
}

.ffp-error {
	margin-bottom: 18px;
	padding: 13px 16px;
	border: 1px solid #f0b8b8;
	border-radius: 12px;
	background: #fff5f5;
	color: #9b2424;
	font-size: 0.9rem;
	line-height: 1.5;
}

.ffp-pagination {
	display: flex;
	margin-top: 34px;
	justify-content: center;
}

.ffp-pagination__numbers {
	display: flex;
	align-items: center;
	gap: 7px;
}

.ffp-page,
.ffp-load-more {
	display: inline-grid;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	place-items: center;
	border: 1px solid #e0e4e9;
	border-radius: 999px;
	background: #fff;
	color: #172029;
	font-size: 0.9rem;
	font-weight: 650;
	cursor: pointer;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ffp-page:hover,
.ffp-load-more:hover,
.ffp-page.is-active {
	border-color: #07131c;
	background: #07131c;
	color: #fff;
}

.ffp-page:hover,
.ffp-load-more:hover {
	transform: translateY(-1px);
}

.ffp-load-more {
	min-width: 150px;
}

.ffp-sheet,
.ffp-sheet-backdrop {
	display: none;
}

.ffp-sheet[hidden],
.ffp-sheet-backdrop[hidden] {
	display: none !important;
}

body.ffp-sheet-open {
	overflow: hidden;
}

.ffp-widget .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1024px) {
	.ffp-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ffp-filter-chips {
		flex-wrap: nowrap;
	}
}

@media (max-width: 767px) {
	.ffp-intro__title {
		font-size: clamp(2rem, 11vw, 3rem);
	}

	.ffp-intro__description {
		font-size: 0.94rem;
	}

	.ffp-filter-bar__inner {
		width: 100%;
		min-width: 0;
		overflow: visible;
	}

	.ffp-mobile-filter-summary {
		display: flex;
		width: 100%;
		min-width: 0;
		align-items: stretch;
	}

	.ffp-mobile-filter-trigger {
		display: inline-flex;
		flex: 0 0 auto;
	}

	.ffp-mobile-active-trigger {
		display: inline-flex;
		min-width: 0;
		flex: 1 1 auto;
		justify-content: space-between;
	}

	.ffp-widget[data-mobile-filter-layout="compact"] .ffp-filter-chips,
	.ffp-widget[data-mobile-filter-layout="stacked"] .ffp-filter-chips,
	.ffp-widget[data-mobile-filter-layout="button-only"] .ffp-filter-chips {
		display: none;
	}

	.ffp-widget[data-mobile-filter-layout="stacked"] .ffp-mobile-filter-summary {
		flex-direction: column;
	}

	.ffp-widget[data-mobile-filter-layout="stacked"] .ffp-mobile-filter-trigger,
	.ffp-widget[data-mobile-filter-layout="stacked"] .ffp-mobile-active-trigger,
	.ffp-widget[data-mobile-filter-layout="button-only"] .ffp-mobile-filter-trigger {
		width: 100%;
	}

	.ffp-widget[data-mobile-filter-layout="button-only"] .ffp-mobile-active-trigger {
		display: none;
	}

	.ffp-widget[data-mobile-filter-layout="quick-scroll"] .ffp-mobile-filter-summary {
		width: auto;
		flex: 0 0 auto;
	}

	.ffp-widget[data-mobile-filter-layout="quick-scroll"] .ffp-mobile-active-trigger {
		display: none;
	}

	.ffp-widget[data-mobile-filter-layout="quick-scroll"] .ffp-filter-chips {
		display: flex;
		min-width: 0;
		flex: 1 1 auto;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.ffp-filter-chips::-webkit-scrollbar {
		display: none;
	}

	.ffp-filter-chips > * {
		flex: 0 0 auto;
	}

	.ffp-chip,
	.ffp-mobile-filter-trigger,
	.ffp-mobile-active-trigger {
		min-height: 40px;
		padding: 9px 14px;
		font-size: 0.84rem;
	}

	.ffp-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
	}

	.ffp-card__body {
		padding: 20px;
	}

	.ffp-card__title {
		font-size: 1.18rem;
	}

	.ffp-overflow-menu {
		position: fixed;
		top: auto;
		right: 16px;
		bottom: 18px;
		left: 16px;
		max-height: min(55vh, 380px);
	}

	.ffp-sheet-backdrop {
		position: fixed;
		inset: 0;
		z-index: 99997;
		display: block;
		background: rgba(7, 13, 20, 0.58);
		backdrop-filter: blur(4px);
		animation: ffp-fade-in 180ms ease both;
	}

	.ffp-sheet {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 99998;
		display: block;
		max-height: min(88vh, 780px);
		padding: 10px 20px max(20px, env(safe-area-inset-bottom));
		overflow-y: auto;
		border-radius: 26px 26px 0 0;
		background: #fff;
		box-shadow: 0 -18px 60px rgba(7, 13, 20, 0.24);
		animation: ffp-sheet-in 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
	}

	.ffp-sheet__handle {
		width: 42px;
		height: 4px;
		margin: 0 auto 14px;
		border-radius: 99px;
		background: #c3c8cf;
	}

	.ffp-sheet__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 6px 0 14px;
	}

	.ffp-sheet__header h3 {
		margin: 0;
		color: #11161b;
		font-size: 1.25rem;
		font-weight: 750;
		letter-spacing: -0.02em;
	}

	.ffp-sheet__close {
		display: grid;
		width: 40px;
		height: 40px;
		padding: 0;
		place-items: center;
		border: 0;
		border-radius: 50%;
		background: #f1f3f5;
		color: #171c21;
		font-size: 1.7rem;
		font-weight: 300;
		line-height: 1;
		cursor: pointer;
	}

	.ffp-sheet__options {
		display: grid;
		gap: 6px;
	}

	.ffp-sheet__option {
		display: flex;
		min-height: 54px;
		padding: 12px 14px;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		border-radius: 13px;
		background: #f8f9fa;
		color: #20262d;
		font-size: 0.95rem;
		font-weight: 600;
		cursor: pointer;
	}

	.ffp-sheet__option:hover {
		background: #f1f3f5;
	}

	.ffp-sheet__option input {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

	.ffp-sheet__radio {
		position: relative;
		width: 23px;
		height: 23px;
		flex: 0 0 auto;
		border: 1.5px solid #c2c8d0;
		border-radius: 50%;
		background: #fff;
	}

	.ffp-sheet__option input:checked + .ffp-sheet__radio {
		border-color: #07131c;
		background: #07131c;
	}

	.ffp-sheet__option input:checked + .ffp-sheet__radio::after {
		position: absolute;
		top: 5px;
		left: 7px;
		width: 6px;
		height: 10px;
		border: solid #fff;
		border-width: 0 2px 2px 0;
		content: "";
		transform: rotate(45deg);
	}

	.ffp-sheet__actions {
		position: sticky;
		bottom: 0;
		display: grid;
		gap: 8px;
		padding-top: 18px;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 20%);
	}

	.ffp-sheet__apply,
	.ffp-sheet__clear {
		min-height: 50px;
		border: 0;
		border-radius: 999px;
		font-weight: 700;
		cursor: pointer;
	}

	.ffp-sheet__apply {
		background: #07131c;
		color: #fff;
	}

	.ffp-sheet__clear {
		background: transparent;
		color: #727a84;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ffp-widget *,
	.ffp-widget *::before,
	.ffp-widget *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@keyframes ffp-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes ffp-sheet-in {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Alignment, full-width filter surfaces, counts, and author meta. */
.ffp-intro {
	position: relative;
}

.ffp-intro__description {
	display: inline-block;
	width: min(100%, 720px);
}

.ffp-filter-bar__inner {
	width: 100%;
	margin-inline: auto;
}

.ffp-filter-width-full .ffp-filter-bar {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
}

.ffp-filter-surface-yes .ffp-filter-bar {
	background: #fff;
	box-shadow: 0 8px 28px rgba(21, 29, 38, 0.09);
}

.ffp-filter-sticky-yes .ffp-filter-bar {
	position: sticky;
	z-index: 40;
}

.ffp-chip__count,
.ffp-sheet__count {
	display: inline-flex;
	min-width: 20px;
	height: 20px;
	margin-inline-start: 7px;
	padding-inline: 6px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(17, 23, 28, 0.07);
	font-size: 0.75em;
	font-weight: 700;
	line-height: 1;
}

.ffp-chip.is-active .ffp-chip__count {
	background: rgba(255, 255, 255, 0.18);
}

.ffp-overflow-item .ffp-chip__count {
	margin-inline-start: auto;
}

.ffp-card__badge:is(a) {
	text-decoration: none;
	transition: filter 160ms ease, transform 160ms ease;
}

.ffp-card__badge:is(a):hover {
	filter: brightness(0.96);
	transform: translateY(-1px);
}

.ffp-card__meta-item,
.ffp-card__author,
.ffp-card__author-name,
.ffp-card__comments {
	display: inline-flex;
	align-items: center;
}

.ffp-card__meta-item {
	gap: 6px;
}

.ffp-card__meta-item + .ffp-card__meta-item::before {
	margin-inline-end: 4px;
	content: "•";
}

.ffp-card__meta a {
	text-decoration: none;
}

.ffp-card__meta a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ffp-card__author-avatar {
	display: block;
	flex: 0 0 auto;
	object-fit: cover;
}

.ffp-card__author-prefix {
	opacity: 0.78;
}

.ffp-card__author > svg,
.ffp-card__comments svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ffp-card__reading-time::before {
	display: none;
	content: none;
}

@media (max-width: 767px) {
	.ffp-filter-width-full .ffp-filter-bar {
		width: 100vw;
		max-width: 100vw;
	}

	.ffp-card__meta {
		row-gap: 8px;
	}
}

.ffp-card__footer > .ffp-card__arrow:only-child {
	margin-inline-start: auto;
}

@supports (width: 100dvw) {
	.ffp-filter-width-full .ffp-filter-bar {
		width: 100dvw;
		max-width: 100dvw;
		margin-inline: calc(50% - 50dvw);
	}
}


/* Visual filter styles and badge customization. */
.ffp-widget.ffp-filter-style-outline .ffp-chip.is-active {
	border-color: var(--ffp-filter-indicator) !important;
	background: transparent !important;
	color: var(--ffp-filter-indicator) !important;
}

.ffp-widget.ffp-filter-style-underline .ffp-chip,
.ffp-widget.ffp-filter-style-overline .ffp-chip,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip,
.ffp-widget.ffp-filter-style-minimal .ffp-chip {
	border-color: transparent !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.ffp-widget.ffp-filter-style-underline .ffp-chip.is-active,
.ffp-widget.ffp-filter-style-overline .ffp-chip.is-active,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip.is-active,
.ffp-widget.ffp-filter-style-minimal .ffp-chip.is-active,
.ffp-widget.ffp-filter-style-tabs .ffp-chip.is-active {
	border-color: transparent !important;
	background: transparent !important;
	color: var(--ffp-filter-indicator) !important;
}

.ffp-widget.ffp-filter-style-underline .ffp-chip::after,
.ffp-widget.ffp-filter-style-overline .ffp-chip::before,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip::before,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip::after,
.ffp-widget.ffp-filter-style-tabs .ffp-chip::after {
	position: absolute;
	left: 50%;
	z-index: -1;
	width: var(--ffp-filter-indicator-width);
	height: var(--ffp-filter-indicator-size);
	border-radius: 999px;
	background: var(--ffp-filter-indicator);
	content: "";
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform 190ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ffp-widget.ffp-filter-style-underline .ffp-chip::after,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip::after,
.ffp-widget.ffp-filter-style-tabs .ffp-chip::after {
	bottom: 0;
}

.ffp-widget.ffp-filter-style-overline .ffp-chip::before,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip::before {
	top: 0;
}

.ffp-widget.ffp-filter-style-underline .ffp-chip.is-active::after,
.ffp-widget.ffp-filter-style-overline .ffp-chip.is-active::before,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip.is-active::before,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip.is-active::after,
.ffp-widget.ffp-filter-style-tabs .ffp-chip.is-active::after {
	transform: translateX(-50%) scaleX(1);
}

.ffp-widget.ffp-filter-style-tabs .ffp-chip {
	border-color: transparent !important;
	border-radius: 10px 10px 0 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.ffp-widget.ffp-filter-style-tabs .ffp-chip.is-active {
	box-shadow: inset 0 -1px 0 rgba(23, 52, 95, 0.08) !important;
}

.ffp-widget.ffp-filter-style-minimal .ffp-chip.is-active {
	font-weight: 750;
}

.ffp-widget.ffp-filter-style-underline .ffp-chip:hover,
.ffp-widget.ffp-filter-style-overline .ffp-chip:hover,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip:hover,
.ffp-widget.ffp-filter-style-minimal .ffp-chip:hover,
.ffp-widget.ffp-filter-style-tabs .ffp-chip:hover {
	background: rgba(23, 52, 95, 0.055) !important;
	color: var(--ffp-filter-indicator) !important;
}

.ffp-badge-style-outline .ffp-card__badge {
	background: transparent !important;
}

.ffp-badge-style-underline .ffp-card__badge {
	padding-inline: 0 !important;
	border-width: 0 0 1px !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.ffp-badge-style-text .ffp-card__badge {
	padding: 0 !important;
	border-color: transparent !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.ffp-badge-style-solid .ffp-card__badge {
	font-weight: 750;
}

.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 1) {
	border-color: rgba(64, 87, 201, 0.14) !important;
	background: #eef0ff !important;
	color: #4057c9 !important;
}

.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 2) {
	border-color: rgba(19, 132, 87, 0.14) !important;
	background: #e8f8f0 !important;
	color: #137a52 !important;
}

.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 3) {
	border-color: rgba(181, 94, 16, 0.14) !important;
	background: #fff2e4 !important;
	color: #a7560d !important;
}

.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 4) {
	border-color: rgba(177, 45, 99, 0.14) !important;
	background: #ffeaf2 !important;
	color: #a72d61 !important;
}

.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 5) {
	border-color: rgba(22, 112, 153, 0.14) !important;
	background: #e7f6fc !important;
	color: #126b93 !important;
}

.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n) {
	border-color: rgba(113, 72, 190, 0.14) !important;
	background: #f2ebff !important;
	color: #6d43b8 !important;
}

.ffp-badge-colors-palette .ffp-card__badge:hover {
	filter: brightness(0.965);
}

@media (max-width: 440px) {
	.ffp-widget[data-mobile-filter-layout="compact"] .ffp-mobile-filter-summary {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.ffp-widget[data-mobile-filter-layout="compact"] .ffp-mobile-filter-trigger,
	.ffp-widget[data-mobile-filter-layout="compact"] .ffp-mobile-active-trigger {
		width: 100%;
	}
}

.ffp-mobile-active-trigger[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.ffp-widget.ffp-filter-style-underline .ffp-chip::after,
.ffp-widget.ffp-filter-style-overline .ffp-chip::before,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip::before,
.ffp-widget.ffp-filter-style-doubleline .ffp-chip::after,
.ffp-widget.ffp-filter-style-tabs .ffp-chip::after {
	z-index: 0;
}

.ffp-chip > .ffp-chip__label,
.ffp-chip > .ffp-chip__count,
.ffp-chip > svg {
	position: relative;
	z-index: 1;
}

.ffp-badge-style-outline.ffp-badge-colors-palette .ffp-card__badge,
.ffp-badge-style-underline.ffp-badge-colors-palette .ffp-card__badge,
.ffp-badge-style-text.ffp-badge-colors-palette .ffp-card__badge {
	background: transparent !important;
}

.ffp-badge-style-text.ffp-badge-colors-palette .ffp-card__badge {
	border-color: transparent !important;
}

.ffp-badge-style-solid.ffp-badge-colors-palette .ffp-card__badge {
	color: #fff !important;
}

.ffp-badge-style-solid.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 1) {
	border-color: #4057c9 !important;
	background: #4057c9 !important;
}

.ffp-badge-style-solid.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 2) {
	border-color: #137a52 !important;
	background: #137a52 !important;
}

.ffp-badge-style-solid.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 3) {
	border-color: #a7560d !important;
	background: #a7560d !important;
}

.ffp-badge-style-solid.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 4) {
	border-color: #a72d61 !important;
	background: #a72d61 !important;
}

.ffp-badge-style-solid.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n + 5) {
	border-color: #126b93 !important;
	background: #126b93 !important;
}

.ffp-badge-style-solid.ffp-badge-colors-palette .ffp-card__badge:nth-child(6n) {
	border-color: #6d43b8 !important;
	background: #6d43b8 !important;
}

/* Container-aware responsive filters and title-state customization. */
.ffp-widget {
	container-type: inline-size;
}

.ffp-filter-bar,
.ffp-filter-bar__inner,
.ffp-filter-chips,
.ffp-mobile-filter-summary {
	min-width: 0;
}

.ffp-filter-chips {
	max-width: 100%;
}

.ffp-chip__label,
.ffp-mobile-active-label {
	min-width: 0;
	max-width: min(260px, 42vw);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ffp-size-desktop .ffp-mobile-filter-summary {
	display: none !important;
}

.ffp-size-desktop .ffp-filter-chips,
.ffp-size-tablet[data-tablet-filter-layout="auto-fit"] .ffp-filter-chips {
	display: flex !important;
	width: 100%;
	max-width: 100%;
	flex: 1 1 100%;
	flex-wrap: nowrap;
	overflow: visible;
}

.ffp-size-tablet[data-tablet-filter-layout="auto-fit"] .ffp-mobile-filter-summary {
	display: none !important;
}

.ffp-size-tablet[data-tablet-filter-layout="compact"] .ffp-filter-bar__inner,
.ffp-size-tablet[data-tablet-filter-layout="button-only"] .ffp-filter-bar__inner {
	display: block;
	width: 100%;
}

.ffp-size-tablet[data-tablet-filter-layout="compact"] .ffp-filter-chips,
.ffp-size-tablet[data-tablet-filter-layout="button-only"] .ffp-filter-chips {
	display: none !important;
}

.ffp-size-tablet[data-tablet-filter-layout="compact"] .ffp-mobile-filter-summary,
.ffp-size-tablet[data-tablet-filter-layout="button-only"] .ffp-mobile-filter-summary {
	display: grid !important;
	width: 100%;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: stretch;
}

.ffp-size-tablet .ffp-mobile-filter-trigger,
.ffp-size-tablet .ffp-mobile-active-trigger {
	display: inline-flex;
}

.ffp-size-tablet .ffp-mobile-active-trigger {
	min-width: 0;
	justify-content: space-between;
}

.ffp-size-tablet[data-tablet-filter-layout="button-only"] .ffp-mobile-filter-summary {
	grid-template-columns: minmax(0, 1fr);
}

.ffp-size-tablet[data-tablet-filter-layout="button-only"] .ffp-mobile-filter-trigger {
	width: 100%;
}

.ffp-size-tablet[data-tablet-filter-layout="button-only"] .ffp-mobile-active-trigger {
	display: none !important;
}

.ffp-size-mobile .ffp-filter-bar__inner {
	display: grid !important;
	width: 100%;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	overflow: visible;
}

.ffp-size-mobile .ffp-mobile-filter-summary {
	display: grid !important;
	width: 100%;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
}

.ffp-size-mobile .ffp-mobile-filter-trigger,
.ffp-size-mobile .ffp-mobile-active-trigger {
	display: inline-flex;
	width: 100%;
	min-width: 0;
}

.ffp-size-mobile .ffp-mobile-active-trigger {
	justify-content: space-between;
}

.ffp-size-mobile[data-mobile-filter-layout="compact"] .ffp-filter-chips,
.ffp-size-mobile[data-mobile-filter-layout="stacked"] .ffp-filter-chips,
.ffp-size-mobile[data-mobile-filter-layout="button-only"] .ffp-filter-chips {
	display: none !important;
}

.ffp-size-mobile[data-mobile-filter-layout="button-only"] .ffp-mobile-active-trigger {
	display: none !important;
}

.ffp-size-mobile[data-mobile-filter-layout="quick-scroll"] .ffp-mobile-filter-summary {
	display: grid !important;
}

.ffp-size-mobile[data-mobile-filter-layout="quick-scroll"] .ffp-mobile-active-trigger {
	display: none !important;
}

.ffp-size-mobile[data-mobile-filter-layout="quick-scroll"] .ffp-filter-chips {
	display: flex !important;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.ffp-size-mobile[data-mobile-filter-layout="quick-scroll"] .ffp-filter-chips::-webkit-scrollbar {
	display: none;
}

.ffp-size-mobile[data-mobile-filter-layout="quick-scroll"] .ffp-filter-chips > * {
	flex: 0 0 auto;
}

.ffp-size-mobile .ffp-more-trigger,
.ffp-size-tablet[data-tablet-filter-layout="compact"] .ffp-more-trigger,
.ffp-size-tablet[data-tablet-filter-layout="button-only"] .ffp-more-trigger {
	display: none !important;
}

.ffp-size-tablet .ffp-mobile-filter-trigger,
.ffp-size-mobile .ffp-mobile-filter-trigger {
	position: relative;
	z-index: 2;
}

.ffp-size-tablet .ffp-mobile-filter-summary,
.ffp-size-mobile .ffp-mobile-filter-summary {
	position: relative;
	z-index: 6;
}

.ffp-size-tablet .ffp-mobile-filter-trigger:focus-visible,
.ffp-size-mobile .ffp-mobile-filter-trigger:focus-visible {
	z-index: 7;
}

/* Shared responsive filter panel. */
.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99997;
	display: block;
	background: rgba(7, 13, 20, 0.58);
	backdrop-filter: blur(4px);
	animation: ffp-fade-in 180ms ease both;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet {
	position: fixed;
	z-index: 99998;
	display: block;
	padding: 10px 20px max(20px, env(safe-area-inset-bottom));
	overflow-y: auto;
	background: #fff;
	box-shadow: 0 24px 80px rgba(7, 13, 20, 0.28);
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__handle {
	width: 42px;
	height: 4px;
	margin: 0 auto 14px;
	border-radius: 99px;
	background: #c3c8cf;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__header {
	display: flex;
	padding: 6px 0 14px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__header h3 {
	margin: 0;
	color: #11161b;
	font-size: 1.25rem;
	font-weight: 750;
	letter-spacing: -0.02em;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__close {
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: #f1f3f5;
	color: #171c21;
	font-size: 1.7rem;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__options {
	display: grid;
	gap: 6px;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__option {
	display: flex;
	min-height: 54px;
	padding: 12px 14px;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border-radius: 13px;
	background: #f8f9fa;
	color: #20262d;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__option:hover {
	background: #f1f3f5;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__radio {
	position: relative;
	width: 23px;
	height: 23px;
	flex: 0 0 auto;
	border: 1.5px solid #c2c8d0;
	border-radius: 50%;
	background: #fff;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__option input:checked + .ffp-sheet__radio {
	border-color: #07131c;
	background: #07131c;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__option input:checked + .ffp-sheet__radio::after {
	position: absolute;
	top: 5px;
	left: 7px;
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	content: "";
	transform: rotate(45deg);
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__actions {
	position: sticky;
	bottom: 0;
	display: grid;
	gap: 8px;
	padding-top: 18px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 20%);
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__apply,
.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__clear {
	min-height: 50px;
	border: 0;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__apply {
	background: #07131c;
	color: #fff;
}

.ffp-widget:is(.ffp-size-mobile, .ffp-size-tablet) .ffp-sheet__clear {
	background: transparent;
	color: #727a84;
}

.ffp-size-mobile .ffp-sheet {
	right: 0;
	bottom: 0;
	left: 0;
	max-height: min(88vh, 780px);
	border-radius: 26px 26px 0 0;
	animation: ffp-sheet-in 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ffp-size-tablet .ffp-sheet {
	top: 50%;
	left: 50%;
	width: min(560px, calc(100vw - 48px));
	max-height: min(82vh, 760px);
	border-radius: 24px;
	transform: translate(-50%, -50%);
}

.ffp-size-tablet .ffp-sheet__handle {
	display: none;
}

/* Defensive fallback before JavaScript assigns container-size classes. */
@container (max-width: 767px) {
	.ffp-mobile-filter-summary {
		display: grid;
		width: 100%;
		grid-template-columns: minmax(0, 1fr);
	}

	.ffp-mobile-filter-trigger,
	.ffp-mobile-active-trigger {
		display: inline-flex;
		width: 100%;
	}
}

@container (max-width: 767px) {
	.ffp-widget[data-mobile-filter-layout="compact"] .ffp-filter-chips,
	.ffp-widget[data-mobile-filter-layout="stacked"] .ffp-filter-chips,
	.ffp-widget[data-mobile-filter-layout="button-only"] .ffp-filter-chips {
		display: none;
	}

	.ffp-widget[data-mobile-filter-layout="button-only"] .ffp-mobile-active-trigger {
		display: none;
	}
}

@container (min-width: 768px) and (max-width: 1024px) {
	.ffp-widget[data-tablet-filter-layout="compact"] .ffp-filter-chips,
	.ffp-widget[data-tablet-filter-layout="button-only"] .ffp-filter-chips {
		display: none;
	}

	.ffp-widget[data-tablet-filter-layout="compact"] .ffp-mobile-filter-summary,
	.ffp-widget[data-tablet-filter-layout="button-only"] .ffp-mobile-filter-summary {
		display: grid;
		width: 100%;
		grid-template-columns: auto minmax(0, 1fr);
	}

	.ffp-widget[data-tablet-filter-layout="compact"] .ffp-mobile-filter-trigger,
	.ffp-widget[data-tablet-filter-layout="compact"] .ffp-mobile-active-trigger,
	.ffp-widget[data-tablet-filter-layout="button-only"] .ffp-mobile-filter-trigger {
		display: inline-flex;
	}
}


/* Deterministic Filled Pill preview and theme-proof states. */
.ffp-widget.ffp-filter-style-pill .ffp-chip,
.ffp-widget.ffp-filter-style-pill .ffp-mobile-active-trigger {
	border-color: var(--ffp-filter-border-color) !important;
	border-radius: var(--ffp-filter-radius) !important;
	background-color: var(--ffp-filter-bg) !important;
	color: var(--ffp-filter-text) !important;
}

.ffp-widget.ffp-filter-style-pill .ffp-chip:hover,
.ffp-widget.ffp-filter-style-pill .ffp-mobile-active-trigger:hover {
	border-color: var(--ffp-filter-hover-border) !important;
	background-color: var(--ffp-filter-hover-bg) !important;
	color: var(--ffp-filter-hover-text) !important;
}

.ffp-widget.ffp-filter-style-pill .ffp-chip.is-active {
	border-color: var(--ffp-filter-active-border) !important;
	background-color: var(--ffp-filter-active-bg) !important;
	color: var(--ffp-filter-active-text) !important;
}

.ffp-widget .ffp-mobile-filter-trigger {
	border-color: var(--ffp-mobile-filter-border) !important;
	background-color: var(--ffp-mobile-filter-bg) !important;
	color: var(--ffp-mobile-filter-text) !important;
}

/* FilterFlow public release: collision-safe and duplication-free responsive controls. */
.ffp-widget {
	overflow-anchor: none;
	--ffp-auto-header-clearance: 0px;
	--ffp-manual-header-clearance: 0px;
	--ffp-auto-sticky-top: 0px;
	--ffp-sticky-user-offset: 0px;
	box-sizing: border-box;
	padding-top: max(var(--ffp-auto-header-clearance), var(--ffp-manual-header-clearance));
	clear: both;
	isolation: isolate;
}

.ffp-filter-bar {
	position: relative;
	z-index: 2;
	margin-top: 0;
	clear: both;
}

.ffp-filter-sticky-yes .ffp-filter-bar {
	z-index: 30;
	top: max(var(--ffp-sticky-user-offset), var(--ffp-auto-sticky-top));
}

.ffp-responsive-filter-controls,
.ffp-tablet-select-trigger,
.ffp-mobile-controls {
	display: none;
}

.ffp-responsive-filter-controls,
.ffp-mobile-controls,
.ffp-mobile-primary,
.ffp-mobile-quick-filters {
	width: 100%;
	min-width: 0;
}

.ffp-tablet-select-trigger {
	width: 100%;
	min-height: 52px;
	padding: 10px 16px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 1px solid var(--ffp-filter-border-color);
	border-radius: var(--ffp-filter-radius);
	background: var(--ffp-filter-bg);
	color: var(--ffp-filter-text);
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ffp-tablet-select-trigger:hover {
	border-color: var(--ffp-filter-hover-border);
	background: var(--ffp-filter-hover-bg);
	color: var(--ffp-filter-hover-text);
}

.ffp-tablet-select-trigger:focus-visible {
	outline: 3px solid rgba(83, 109, 254, 0.35);
	outline-offset: 2px;
}

.ffp-tablet-select-main,
.ffp-tablet-select-copy {
	display: flex;
	min-width: 0;
	align-items: center;
}

.ffp-tablet-select-main {
	gap: 12px;
}

.ffp-tablet-select-copy {
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.ffp-tablet-select-caption {
	color: var(--ffp-muted);
	font-size: 0.72em;
	font-weight: 600;
	line-height: 1.2;
}

.ffp-tablet-active-label {
	display: block;
	max-width: min(60vw, 520px);
	overflow: hidden;
	font-weight: 700;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ffp-tablet-select-trigger svg,
.ffp-mobile-filter-trigger svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ffp-tablet-select-chevron {
	transition: transform 180ms ease;
}

.ffp-tablet-select-trigger[aria-expanded="true"] .ffp-tablet-select-chevron {
	transform: rotate(180deg);
}

.ffp-mobile-primary {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	align-items: stretch;
	gap: 10px;
}

.ffp-mobile-primary .ffp-mobile-filter-trigger,
.ffp-mobile-primary .ffp-mobile-all-trigger {
	display: inline-flex;
	width: 100%;
	min-width: 0;
	min-height: 44px;
}

.ffp-mobile-primary .ffp-mobile-filter-trigger {
	justify-content: center;
}

.ffp-mobile-primary .ffp-mobile-all-trigger {
	justify-content: center;
}

.ffp-mobile-quick-filters {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.ffp-mobile-quick-filters::-webkit-scrollbar {
	display: none;
}

.ffp-mobile-quick-filters .ffp-mobile-quick-chip {
	flex: 0 0 auto;
}

.ffp-mobile-quick-filters[hidden],
.ffp-mobile-quick-chip[hidden] {
	display: none !important;
}

.ffp-size-desktop .ffp-responsive-filter-controls {
	display: none !important;
}

.ffp-size-desktop .ffp-filter-chips {
	display: flex !important;
}

.ffp-size-tablet .ffp-responsive-filter-controls {
	display: block !important;
}

.ffp-size-tablet[data-tablet-filter-layout="select"] .ffp-tablet-select-trigger {
	display: flex !important;
}

.ffp-size-tablet[data-tablet-filter-layout="select"] .ffp-filter-chips {
	display: none !important;
}

.ffp-size-tablet[data-tablet-filter-layout="auto-fit"] .ffp-responsive-filter-controls {
	display: none !important;
}

.ffp-size-tablet[data-tablet-filter-layout="auto-fit"] .ffp-filter-chips {
	display: flex !important;
}

.ffp-size-mobile .ffp-filter-bar__inner {
	display: block !important;
}

.ffp-size-mobile .ffp-responsive-filter-controls,
.ffp-size-mobile .ffp-mobile-controls {
	display: block !important;
}

.ffp-size-mobile .ffp-mobile-controls {
	display: grid !important;
	gap: 10px;
}

.ffp-size-mobile .ffp-tablet-select-trigger,
.ffp-size-mobile .ffp-filter-chips {
	display: none !important;
}


.ffp-size-mobile[data-mobile-filter-layout="fixed-all"] .ffp-mobile-quick-filters {
	flex-wrap: wrap;
	overflow: visible;
}

.ffp-size-mobile[data-mobile-filter-layout="quick-scroll"] .ffp-mobile-quick-filters {
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
}

.ffp-mobile-primary .ffp-chip__label,
.ffp-mobile-primary .ffp-mobile-filter-trigger span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ffp-size-mobile[data-mobile-filter-layout="filter-all-only"] .ffp-mobile-quick-filters {
	display: none !important;
}

.ffp-size-mobile[data-mobile-filter-layout="quick-scroll"] .ffp-mobile-quick-filters {
	display: flex !important;
}

.ffp-widget .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@container (max-width: 767px) {
	.ffp-responsive-filter-controls,
	.ffp-mobile-controls {
		display: block;
	}

	.ffp-mobile-controls {
		display: grid;
		gap: 10px;
	}

	.ffp-filter-chips,
	.ffp-tablet-select-trigger {
		display: none;
	}
}

@container (min-width: 768px) and (max-width: 1024px) {
	.ffp-widget[data-tablet-filter-layout="select"] .ffp-responsive-filter-controls,
	.ffp-widget[data-tablet-filter-layout="select"] .ffp-tablet-select-trigger {
		display: flex;
	}

	.ffp-widget[data-tablet-filter-layout="select"] .ffp-filter-chips {
		display: none;
	}
}

.ffp-size-mobile[data-mobile-filter-layout] .ffp-filter-chips {
	display: none !important;
}


 .ffp-chip__icon {
	display: inline-grid;
	width: var(--ffp-filter-icon-size);
	height: var(--ffp-filter-icon-size);
	flex: 0 0 auto;
	place-items: center;
}

.ffp-chip__icon > span,
.ffp-chip__icon :is(i, svg) {
	display: block;
	width: 100%;
	height: 100%;
}

.ffp-chip__icon:not(.ffp-chip__icon--auto) :is(i, svg) {
	fill: currentColor;
}

.ffp-chip__icon--auto svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ffp-chip__icon--auto svg rect,
.ffp-chip__icon--auto svg circle,
.ffp-chip__icon--auto svg ellipse {
	vector-effect: non-scaling-stroke;
}

.ffp-sheet__option-label {
	display: inline-flex;
	align-items: center;
	gap: var(--ffp-filter-icon-gap);
}
.ffp-card__media {
	position: relative;
	overflow: hidden;
}

.ffp-card__media .ffp-card__image {
	display: block;
}

.ffp-card__badges--overlay {
	position: absolute;
	z-index: 3;
	width: max-content;
	max-width: calc(100% - var(--ffp-badge-overlay-inset, 14px) - var(--ffp-badge-overlay-inset, 14px));
	margin: 0 !important;
	justify-content: flex-start;
}

.ffp-card--badge-image-top-left .ffp-card__badges--overlay {
	top: var(--ffp-badge-overlay-inset, 14px);
	left: var(--ffp-badge-overlay-inset, 14px);
}

.ffp-card--badge-image-top-center .ffp-card__badges--overlay {
	top: var(--ffp-badge-overlay-inset, 14px);
	left: 50%;
	transform: translateX(-50%);
	justify-content: center;
}

.ffp-card--badge-image-top-right .ffp-card__badges--overlay {
	top: var(--ffp-badge-overlay-inset, 14px);
	right: var(--ffp-badge-overlay-inset, 14px);
	justify-content: flex-end;
}

.ffp-card--badge-image-middle-left .ffp-card__badges--overlay {
	top: 50%;
	left: var(--ffp-badge-overlay-inset, 14px);
	transform: translateY(-50%);
}

.ffp-card--badge-image-center .ffp-card__badges--overlay {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	justify-content: center;
}

.ffp-card--badge-image-middle-right .ffp-card__badges--overlay {
	top: 50%;
	right: var(--ffp-badge-overlay-inset, 14px);
	transform: translateY(-50%);
	justify-content: flex-end;
}

.ffp-card--badge-image-bottom-left .ffp-card__badges--overlay {
	bottom: var(--ffp-badge-overlay-inset, 14px);
	left: var(--ffp-badge-overlay-inset, 14px);
}

.ffp-card--badge-image-bottom-center .ffp-card__badges--overlay {
	bottom: var(--ffp-badge-overlay-inset, 14px);
	left: 50%;
	transform: translateX(-50%);
	justify-content: center;
}

.ffp-card--badge-image-bottom-right .ffp-card__badges--overlay {
	right: var(--ffp-badge-overlay-inset, 14px);
	bottom: var(--ffp-badge-overlay-inset, 14px);
	justify-content: flex-end;
}

.ffp-size-mobile[data-mobile-filter-layout="swipe-only"] .ffp-mobile-primary{display:none!important}.ffp-size-mobile[data-mobile-filter-layout="swipe-only"] .ffp-mobile-quick-filters{display:flex!important;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x proximity}.ffp-size-mobile[data-mobile-filter-layout="swipe-only"] .ffp-mobile-quick-chip{display:inline-flex!important;flex:0 0 auto;scroll-snap-align:start}
.ffp-sheet-backdrop--portal[hidden],.ffp-sheet--portal[hidden]{display:none!important}.ffp-sheet-backdrop--portal{position:fixed;inset:0;z-index:2147483645;display:block;background:rgba(7,13,20,.62);backdrop-filter:blur(5px)}.ffp-sheet--portal{position:fixed;z-index:2147483646;display:block;box-sizing:border-box;overflow-y:auto;overscroll-behavior:contain;background:#fff;color:#20262d;box-shadow:0 24px 80px rgba(7,13,20,.3);-webkit-overflow-scrolling:touch}.ffp-sheet--portal.ffp-sheet--mobile{top:0;right:0;bottom:auto;left:0;width:100%;height:var(--ffp-visual-height,100dvh);max-height:none;padding:max(16px,env(safe-area-inset-top)) 20px max(20px,env(safe-area-inset-bottom));border-radius:0}.ffp-sheet--portal.ffp-sheet--tablet{top:50%;left:50%;width:min(560px,calc(100vw - 48px));max-height:min(82dvh,760px);padding:20px;border-radius:24px;transform:translate(-50%,-50%)}.ffp-sheet--portal .ffp-sheet__handle{display:none}.ffp-sheet--portal .ffp-sheet__header{position:sticky;top:0;z-index:2;display:flex;padding:4px 0 14px;align-items:center;justify-content:space-between;gap:16px;background:#fff}.ffp-sheet--portal .ffp-sheet__options{display:grid;gap:8px}.ffp-sheet--portal .ffp-sheet__option{display:flex;min-height:56px;padding:12px 14px;align-items:center;justify-content:space-between;gap:14px;border-radius:14px;background:#f8f9fa;font-weight:650}.ffp-sheet--portal .ffp-sheet__option input{position:absolute;opacity:0}.ffp-sheet--portal .ffp-sheet__radio{position:relative;width:24px;height:24px;flex:0 0 auto;border:1.5px solid #c2c8d0;border-radius:50%;background:#fff}.ffp-sheet--portal .ffp-sheet__option input:checked+.ffp-sheet__radio{border-color:#07131c;background:#07131c}.ffp-sheet--portal .ffp-sheet__option input:checked+.ffp-sheet__radio:after{position:absolute;top:5px;left:7px;width:6px;height:10px;border:solid #fff;border-width:0 2px 2px 0;content:"";transform:rotate(45deg)}.ffp-sheet--portal .ffp-sheet__actions{position:sticky;bottom:0;display:grid;gap:8px;padding-top:18px;padding-bottom:max(4px,env(safe-area-inset-bottom));background:linear-gradient(to bottom,rgba(255,255,255,0),#fff 18%)}


/* FilterFlow v1.0.0 responsive UI stabilization patch. */
.ffp-sheet--portal {
	--ffp-filter-icon-size: 18px;
	--ffp-filter-icon-gap: 12px;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	gap: 0;
	font: inherit;
}

.ffp-sheet--portal.ffp-sheet--mobile,
.ffp-sheet--portal.ffp-sheet--tablet {
	overflow: hidden;
}

.ffp-sheet--portal .ffp-sheet__header {
	position: relative;
	top: auto;
	flex: 0 0 auto;
	padding: 0 0 16px;
}

.ffp-sheet--portal .ffp-sheet__header h3 {
	margin: 0;
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.2;
}

.ffp-sheet--portal .ffp-sheet__close {
	display: inline-grid;
	width: 48px;
	height: 48px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: #f5f6f8;
	color: #161d26;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
}

.ffp-sheet--portal .ffp-sheet__options {
	display: grid;
	min-height: 0;
	padding: 0 2px 12px;
	gap: 10px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.ffp-sheet--portal .ffp-sheet__option {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	min-height: 64px;
	padding: 14px 16px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 1px solid transparent;
	border-radius: 16px;
	background: #f7f8fa;
	color: #20262d;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.3;
	cursor: pointer;
}

.ffp-sheet--portal .ffp-sheet__option:hover {
	border-color: #dce2e8;
	background: #f2f5f8;
}

.ffp-sheet--portal .ffp-sheet__option-label {
	display: flex !important;
	min-width: 0;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-start;
	gap: var(--ffp-filter-icon-gap, 12px);
	text-align: left;
}

.ffp-sheet--portal .ffp-sheet__option-label > span:not(.ffp-chip__icon):not(.ffp-sheet__count) {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ffp-sheet--portal .ffp-chip__icon {
	display: inline-grid !important;
	box-sizing: border-box;
	width: var(--ffp-filter-icon-size, 18px) !important;
	height: var(--ffp-filter-icon-size, 18px) !important;
	max-width: var(--ffp-filter-icon-size, 18px) !important;
	max-height: var(--ffp-filter-icon-size, 18px) !important;
	min-width: var(--ffp-filter-icon-size, 18px) !important;
	min-height: var(--ffp-filter-icon-size, 18px) !important;
	flex: 0 0 var(--ffp-filter-icon-size, 18px) !important;
	place-items: center;
	overflow: hidden;
	font-size: var(--ffp-filter-icon-size, 18px) !important;
	line-height: 1 !important;
}

.ffp-sheet--portal .ffp-chip__icon > span,
.ffp-sheet--portal .ffp-chip__icon i,
.ffp-sheet--portal .ffp-chip__icon svg {
	display: block !important;
	box-sizing: border-box;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: inherit !important;
	line-height: 1 !important;
}

.ffp-sheet--portal .ffp-chip__icon--auto svg {
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 1.8 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.ffp-sheet--portal .ffp-sheet__radio {
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	flex: 0 0 24px;
}

.ffp-sheet--portal .ffp-sheet__actions {
	position: relative;
	bottom: auto;
	display: grid;
	z-index: 3;
	padding: 14px 0 max(2px, env(safe-area-inset-bottom));
	gap: 10px;
	background: #fff;
}

.ffp-sheet--portal .ffp-sheet__apply,
.ffp-sheet--portal .ffp-sheet__clear {
	display: inline-flex;
	box-sizing: border-box;
	width: 100%;
	min-height: 52px;
	padding: 12px 20px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	font: inherit;
	font-size: 16px;
	font-weight: 750;
	line-height: 1.2;
	cursor: pointer;
}

.ffp-sheet--portal .ffp-sheet__apply {
	border: 1px solid var(--ffp-mobile-filter-bg, #07131c);
	background: var(--ffp-mobile-filter-bg, #07131c);
	color: var(--ffp-mobile-filter-text, #fff);
}

.ffp-sheet--portal .ffp-sheet__clear {
	border: 1px solid #e1e5ea;
	background: #fff;
	color: #69727d;
}

/* All appears once: fixed in the primary row, or inside swipe-only mode. */
.ffp-widget.ffp-size-mobile:not([data-mobile-filter-layout="swipe-only"]) .ffp-mobile-quick-all {
	display: none !important;
}

.ffp-widget.ffp-size-mobile[data-mobile-filter-layout="swipe-only"] .ffp-mobile-primary,
.ffp-mobile-layout-swipe-only .ffp-widget.ffp-size-mobile .ffp-mobile-primary {
	display: none !important;
}

.ffp-widget.ffp-size-mobile[data-mobile-filter-layout="swipe-only"] .ffp-mobile-quick-filters,
.ffp-mobile-layout-swipe-only .ffp-widget.ffp-size-mobile .ffp-mobile-quick-filters {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-snap-type: x proximity;
}

.ffp-widget.ffp-size-mobile[data-mobile-filter-layout="swipe-only"] .ffp-mobile-quick-chip,
.ffp-mobile-layout-swipe-only .ffp-widget.ffp-size-mobile .ffp-mobile-quick-chip {
	display: inline-flex !important;
	flex: 0 0 auto !important;
	scroll-snap-align: start;
}

.ffp-mobile-layout-fixed-all .ffp-widget.ffp-size-mobile .ffp-mobile-quick-all,
.ffp-mobile-layout-filter-all-only .ffp-widget.ffp-size-mobile .ffp-mobile-quick-all,
.ffp-mobile-layout-quick-scroll .ffp-widget.ffp-size-mobile .ffp-mobile-quick-all {
	display: none !important;
}

.ffp-mobile-layout-filter-all-only .ffp-widget.ffp-size-mobile .ffp-mobile-quick-filters {
	display: none !important;
}

.ffp-mobile-layout-quick-scroll .ffp-widget.ffp-size-mobile .ffp-mobile-quick-filters {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
}


/* Keep mobile viewport stable while AJAX replaces filtered results. */
.ffp-widget .ffp-results,
.ffp-widget .ffp-grid {
	overflow-anchor: none;
}

/* Viewport-level overflow menu: prevents Elementor/theme containers from clipping More. */
.ffp-overflow-menu--portal {
	position: fixed !important;
	right: auto !important;
	z-index: 2147483644 !important;
	box-sizing: border-box;
	margin: 0;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.ffp-overflow-menu--portal[hidden] {
	display: none !important;
}

.ffp-overflow-menu--portal .ffp-overflow-item {
	gap: var(--ffp-filter-icon-gap, 8px);
}

.ffp-overflow-menu--portal .ffp-chip__icon {
	display: inline-grid;
	width: var(--ffp-filter-icon-size, 17px);
	height: var(--ffp-filter-icon-size, 17px);
	flex: 0 0 auto;
	place-items: center;
}

.ffp-overflow-menu--portal .ffp-chip__icon svg,
.ffp-overflow-menu--portal .ffp-chip__icon i {
	width: 100%;
	height: 100%;
}

/* Keep compact category chips above decorative surfaces and fully interactive. */
.ffp-size-mobile .ffp-mobile-quick-filters,
.ffp-size-mobile .ffp-mobile-quick-chip {
	position: relative;
	z-index: 3;
	pointer-events: auto !important;
}

/* Reliable compact-width interaction across desktop browsers and page builders. */
.ffp-widget .ffp-chip,
.ffp-widget .ffp-more-trigger,
.ffp-overflow-menu--portal,
.ffp-overflow-menu--portal .ffp-overflow-item {
	pointer-events: auto !important;
	touch-action: manipulation;
}

.ffp-widget .ffp-mobile-quick-filters {
	touch-action: pan-x pan-y;
}

.ffp-overflow-menu--portal {
	display: block;
	visibility: visible;
	opacity: 1;
}

.ffp-overflow-menu--portal[hidden] {
	display: none !important;
}


/* Direct More-menu interaction path. */
.ffp-widget .ffp-more-trigger {
	position: relative;
	z-index: 12;
	pointer-events: auto !important;
	cursor: pointer;
}

.ffp-overflow-menu--portal.is-open {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}
