:root {
	--lcf-black: #111111;
	--lcf-text: #171717;
	--lcf-muted: #707070;
	--lcf-line: #cdcdcd;
	--lcf-soft: #f6f6f6;
	--lcf-white: #ffffff;
}

.lcf-control,
.lcf-active,
.lcf-dialog,
.lcf-dialog *,
.lcf-standard-toolbar,
.lcf-standard-toolbar * {
	box-sizing: border-box;
}

.lcf-control {
	display: inline-flex;
	float: left;
	margin: 0;
}

.lcf-standard-toolbar {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
	width: 100%;
	margin: 0 0 34px;
}

.lcf-standard-toolbar .lcf-control {
	float: none;
}

.lcf-trigger {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 56px;
	margin: 0;
	padding: 0 18px;
	color: var(--lcf-text);
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
	background: var(--lcf-white);
	border: 1px solid var(--lcf-line);
	border-radius: 2px;
	box-shadow: none;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.lcf-trigger:hover {
	color: var(--lcf-text);
	background: #fafafa;
	border-color: #9c9c9c;
}

.lcf-trigger:focus-visible,
.lcf-chip:focus-visible,
.lcf-dialog button:focus-visible,
.lcf-dialog input:focus-visible,
.lcf-dialog summary:focus-visible {
	outline: 2px solid var(--lcf-black);
	outline-offset: 3px;
}

.lcf-trigger__icon {
	display: inline-flex;
	width: 28px;
	height: 28px;
	margin-inline-end: 12px;
}

.lcf-trigger__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: square;
}

.lcf-trigger__label {
	font-size: 17px;
}

.lcf-trigger__divider {
	align-self: stretch;
	width: 1px;
	margin: 12px 14px;
	background: #dedede;
}

.lcf-trigger__count {
	color: var(--lcf-muted);
	font-size: 15px;
}

.lcf-active {
	display: flex;
	clear: both;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	margin: 22px 0 30px;
}

.lcf-standard-toolbar .lcf-active {
	margin: 0;
}

.lcf-chip {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
	min-width: 142px;
	gap: 22px;
	padding: 0 15px 0 18px;
	color: var(--lcf-text);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	background: var(--lcf-white);
	border: 1px solid var(--lcf-line);
	border-radius: 2px;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.lcf-chip:hover {
	color: var(--lcf-text);
	background: #fafafa;
	border-color: #9c9c9c;
}

.lcf-chip__remove,
.lcf-dialog__close span {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
}

.lcf-chip__remove::before,
.lcf-chip__remove::after,
.lcf-dialog__close span::before,
.lcf-dialog__close span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 1.5px;
	background: currentColor;
	content: "";
}

.lcf-chip__remove::before,
.lcf-dialog__close span::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.lcf-chip__remove::after,
.lcf-dialog__close span::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.lcf-dialog {
	position: fixed;
	inset: 0;
	z-index: 100100;
	display: flex;
	justify-content: flex-end;
	color: var(--lcf-text);
	font-family: inherit;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.lcf-dialog.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0s;
}

.lcf-dialog__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
}

.lcf-dialog__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(520px, 100%);
	height: 100vh;
	height: 100dvh;
	max-width: 100%;
	overflow: hidden;
	background: var(--lcf-white);
	border-top: 3px solid #20242a;
	box-shadow: -12px 0 35px rgba(0, 0, 0, 0.12);
	transform: translateX(100%);
	transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lcf-dialog.is-open .lcf-dialog__panel {
	transform: translateX(0);
}

.lcf-dialog__header {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	padding: 0 28px;
	border-bottom: 2px solid var(--lcf-line);
}

.lcf-dialog__header h2 {
	margin: 0;
	padding: 0;
	color: var(--lcf-text);
	font: inherit;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.lcf-dialog__close {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 -13px 0 0;
	padding: 0;
	color: var(--lcf-black);
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
}

.lcf-form {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	min-height: 0;
	flex: 1 1 auto;
	margin: 0;
}

.lcf-form__body {
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.lcf-group {
	margin: 0;
	padding: 0;
	border: 0;
	border-bottom: 1px solid var(--lcf-line);
}

.lcf-group__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 108px;
	gap: 20px;
	padding: 24px 30px;
	list-style: none;
	cursor: pointer;
	user-select: none;
}

.lcf-group__summary::-webkit-details-marker {
	display: none;
}

.lcf-group__copy {
	display: grid;
	min-width: 0;
	gap: 10px;
}

.lcf-group__label {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
}

.lcf-group__value {
	max-width: 380px;
	overflow: hidden;
	color: var(--lcf-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lcf-group__chevron {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	transition: transform 180ms ease;
}

.lcf-group__chevron::before,
.lcf-group__chevron::after {
	position: absolute;
	top: 9px;
	width: 11px;
	height: 1.5px;
	background: currentColor;
	content: "";
}

.lcf-group__chevron::before {
	left: 1px;
	transform: rotate(45deg);
}

.lcf-group__chevron::after {
	right: 1px;
	transform: rotate(-45deg);
}

.lcf-group[open] .lcf-group__chevron {
	transform: rotate(180deg);
}

.lcf-group__panel {
	padding: 0 30px 26px;
}

.lcf-search {
	display: block;
	margin: 0 0 15px;
}

.lcf-search input {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	height: 46px;
	margin: 0;
	padding: 0 14px;
	color: var(--lcf-text);
	font: inherit;
	font-size: 14px;
	background: var(--lcf-white);
	border: 1px solid var(--lcf-line);
	border-radius: 0;
	box-shadow: none;
}

.lcf-options {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	max-height: 310px;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-inline-end: 3px;
}

.lcf-option {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: center;
	min-height: 46px;
	gap: 12px;
	margin: 0;
	padding: 6px 0;
	color: var(--lcf-text);
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
}

.lcf-option[hidden] {
	display: none;
}

.lcf-option input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.lcf-option__box {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	background: var(--lcf-white);
	border: 1px solid #8c8c8c;
}

.lcf-option input:checked + .lcf-option__box {
	background: var(--lcf-black);
	border-color: var(--lcf-black);
}

.lcf-option input:checked + .lcf-option__box::after {
	position: absolute;
	top: 3px;
	left: 6px;
	width: 6px;
	height: 10px;
	border: solid var(--lcf-white);
	border-width: 0 2px 2px 0;
	content: "";
	transform: rotate(45deg);
}

.lcf-option input:focus-visible + .lcf-option__box {
	outline: 2px solid var(--lcf-black);
	outline-offset: 3px;
}

.lcf-options__empty {
	margin: 12px 0;
	color: var(--lcf-muted);
	font-size: 14px;
}

.lcf-form__footer {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	flex: 0 0 auto;
	gap: 14px;
	padding: 20px 28px calc(20px + env(safe-area-inset-bottom));
	background: var(--lcf-white);
	border-top: 1px solid var(--lcf-line);
}

.lcf-button {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 10px 16px;
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: none;
	border-radius: 2px;
	box-shadow: none;
	cursor: pointer;
}

.lcf-button--clear {
	color: var(--lcf-text);
	background: var(--lcf-white);
	border: 1px solid var(--lcf-black);
}

.lcf-button--apply {
	color: var(--lcf-white);
	background: var(--lcf-black);
	border: 1px solid var(--lcf-black);
}

.lcf-button--clear:hover {
	color: var(--lcf-text);
	background: var(--lcf-soft);
}

.lcf-button--apply:hover {
	color: var(--lcf-white);
	background: #2a2a2a;
}

body.lcf-scroll-locked {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
}

.lcf-results {
	position: relative;
	transition: opacity 160ms ease;
}

.lcf-results.is-loading {
	min-height: 220px;
	opacity: 0.48;
	pointer-events: none;
}

.lcf-results.is-loading::after {
	position: absolute;
	top: 120px;
	left: 50%;
	width: 34px;
	height: 34px;
	margin: -17px 0 0 -17px;
	border: 2px solid rgba(17, 17, 17, 0.2);
	border-top-color: var(--lcf-black);
	border-radius: 50%;
	content: "";
	animation: lcf-spin 700ms linear infinite;
}

.lcf-noscript {
	margin: 15px;
	padding: 12px;
	background: #fff4ce;
}

@keyframes lcf-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
	.lcf-control {
		float: none;
	}

	.products-tools .lcf-control {
		display: flex;
		width: 100%;
	}

	.lcf-trigger {
		min-height: 54px;
		max-width: 100%;
		padding: 0 14px;
	}

	.lcf-trigger__label {
		font-size: 16px;
	}

	.lcf-trigger__count {
		overflow: hidden;
		font-size: 14px;
		text-overflow: ellipsis;
	}

	.lcf-trigger__divider {
		margin-inline: 11px;
	}

	.lcf-active {
		gap: 9px;
		margin: 18px 0 24px;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 3px;
		scrollbar-width: none;
	}

	.lcf-active::-webkit-scrollbar {
		display: none;
	}

	.lcf-chip {
		flex: 0 0 auto;
		min-width: 128px;
		min-height: 48px;
	}

	.lcf-dialog__backdrop {
		display: none;
	}

	.lcf-dialog__panel {
		width: 100%;
		box-shadow: none;
	}

	.lcf-dialog__header {
		min-height: 72px;
		padding: 0 20px;
	}

	.lcf-dialog__header h2 {
		font-size: 20px;
	}

	.lcf-group__summary {
		min-height: 96px;
		padding: 21px 20px;
	}

	.lcf-group__panel {
		padding: 0 20px 22px;
	}

	.lcf-form__footer {
		gap: 10px;
		padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
	}

	.lcf-button {
		min-height: 50px;
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lcf-dialog,
	.lcf-dialog__panel,
	.lcf-trigger,
	.lcf-chip,
	.lcf-results,
	.lcf-group__chevron {
		transition-duration: 0.01ms !important;
	}

	.lcf-results.is-loading::after {
		animation-duration: 1.5s;
	}
}
