.wet-filter-sidebar {
	background: #fff;
	border: 1px solid var(--wet-line, #ece1e4);
	border-radius: var(--wet-radius, 8px);
	box-shadow: 0 10px 28px rgba(30, 22, 26, 0.06);
	color: var(--wet-text, #191919);
	overflow: hidden;
}

.wet-filter-shell {
	position: relative;
}

.wet-filter-overlay,
.wet-filter-mobile-head,
.wet-filter-shell--drawer .wet-mobile-filter-toggle {
	display: none;
}

.wet-filter-panel {
	background: #fff;
}

.wet-filter-section {
	border-bottom: 1px solid var(--wet-line, #ece1e4);
	padding: 20px;
}

.wet-filter-section:last-child {
	border-bottom: 0;
}

.wet-filter-title {
	align-items: center;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.wet-filter-title::after {
	background: var(--wet-accent, #e73568);
	content: "";
	display: block;
	height: 2px;
	width: 14px;
}

.wet-check-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wet-check {
	align-items: center;
	cursor: pointer;
	display: grid;
	gap: 9px;
	grid-template-columns: 16px 1fr auto;
	min-height: 22px;
}

.wet-check input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.wet-check-mark {
	background: #fff;
	border: 1px solid #d9c9ce;
	border-radius: 4px;
	height: 16px;
	position: relative;
	width: 16px;
}

.wet-check input[type="checkbox"]:checked + .wet-check-mark,
.wet-check input[type="radio"]:checked + .wet-check-mark,
.filter-category:checked + .wet-check-mark {
	background: var(--wet-accent, #e73568);
	border-color: var(--wet-accent, #e73568);
}

.wet-check input[type="checkbox"]:checked + .wet-check-mark::after {
	border: solid #fff;
	border-width: 0 2px 2px 0;
	content: "";
	height: 8px;
	left: 5px;
	position: absolute;
	top: 2px;
	transform: rotate(45deg);
	width: 4px;
}

.wet-check-label {
	font-size: 14px;
}

.wet-check-count {
	color: var(--wet-muted, #747474);
	font-size: 13px;
}

.wet-price-fields {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wet-price-fields label {
	color: var(--wet-muted, #747474);
	display: grid;
	font-size: 12px;
	gap: 6px;
}

.wet-price-fields input,
.wet-sort {
	background: #fff;
	border: 1px solid var(--wet-line, #ece1e4);
	border-radius: 6px;
	color: var(--wet-text, #191919);
	font-size: 14px;
	min-height: 42px;
	padding: 9px 12px;
	width: 100%;
}

.wet-price-fields input:focus,
.wet-sort:focus {
	border-color: var(--wet-accent, #e73568);
	box-shadow: 0 0 0 3px rgba(231, 53, 104, 0.14);
	outline: none;
}

.wet-reset-button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--wet-line, #ece1e4);
	border-radius: 6px;
	color: var(--wet-text, #191919);
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: center;
	margin-top: 10px;
	min-height: 42px;
	padding: 10px 16px;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
}

.wet-reset-button:hover {
	border-color: var(--wet-accent, #e73568);
	color: var(--wet-accent, #e73568);
}

body.wet-filter-is-open {
	overflow: hidden;
}

.wet-no-transition .wet-filter-panel,
.wet-no-transition .wet-filter-overlay {
	transition: none !important;
}

.wet-filter-shell--drawer.is-drawer-active .wet-mobile-filter-toggle,
.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-mobile-filter-toggle {
	align-items: center;
	background: var(--wet-accent, #e73568);
	border: 1px solid var(--wet-accent, #e73568);
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
	justify-content: center;
	margin-bottom: 16px;
	min-height: 44px;
	padding: 10px 16px;
	text-transform: uppercase;
	width: 100%;
}

.wet-filter-shell--drawer.is-drawer-active .wet-mobile-filter-toggle:hover,
.wet-filter-shell--drawer.is-drawer-active .wet-mobile-filter-toggle:focus,
.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-mobile-filter-toggle:hover,
.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-mobile-filter-toggle:focus {
	background: var(--wet-accent-dark, #c81f50);
	outline: none;
}

.wet-mobile-filter-icon {
	background-image: linear-gradient(currentColor, currentColor);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px 2px;
	display: inline-grid;
	gap: 3px;
	height: 14px;
	width: 16px;
}

.wet-mobile-filter-icon::before,
.wet-mobile-filter-icon::after {
	background: currentColor;
	content: "";
	display: block;
	height: 2px;
	width: 16px;
}

.wet-filter-shell--drawer.is-drawer-active .wet-filter-overlay,
.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-filter-overlay {
	background: rgba(17, 17, 17, 0.45);
	display: block;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.2s ease;
	z-index: 99998;
}

.wet-filter-shell--drawer.is-drawer-active .wet-filter-panel,
.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-filter-panel {
	background: #fff;
	bottom: 0;
	box-shadow: 16px 0 34px rgba(0, 0, 0, 0.16);
	left: 0;
	max-width: 88vw;
	overflow-y: auto;
	position: fixed;
	top: 0;
	transform: translateX(-105%);
	transition: transform 0.25s ease;
	width: 340px;
	z-index: 99999;
}

.wet-filter-shell--drawer.is-drawer-active.is-open .wet-filter-overlay,
.wet-filter-shell--drawer[data-wet-offcanvas="all"].is-open .wet-filter-overlay {
	opacity: 1;
	pointer-events: auto;
}

.wet-filter-shell--drawer.is-drawer-active.is-open .wet-filter-panel,
.wet-filter-shell--drawer[data-wet-offcanvas="all"].is-open .wet-filter-panel {
	transform: translateX(0);
}

.wet-filter-shell--drawer.is-drawer-active .wet-filter-mobile-head,
.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-filter-mobile-head {
	align-items: center;
	border-bottom: 1px solid var(--wet-line, #ece1e4);
	display: flex;
	font-size: 16px;
	justify-content: space-between;
	padding: 16px 18px;
}

.wet-filter-close {
	align-items: center;
	background: #fff;
	border: 1px solid var(--wet-line, #ece1e4);
	border-radius: 6px;
	color: var(--wet-text, #191919);
	cursor: pointer;
	display: inline-flex;
	font-size: 24px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	width: 36px;
}

.wet-filter-shell--drawer.is-drawer-active .wet-filter-sidebar,
.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-filter-sidebar {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

@media (max-width: 1024px) {
	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-mobile-filter-toggle {
		align-items: center;
		background: var(--wet-accent, #e73568);
		border: 1px solid var(--wet-accent, #e73568);
		border-radius: 6px;
		color: #fff;
		cursor: pointer;
		display: inline-flex;
		font-size: 14px;
		font-weight: 700;
		gap: 9px;
		justify-content: center;
		margin-bottom: 16px;
		min-height: 44px;
		padding: 10px 16px;
		text-transform: uppercase;
		width: 100%;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-mobile-filter-toggle:hover,
	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-mobile-filter-toggle:focus {
		background: var(--wet-accent-dark, #c81f50);
		outline: none;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-filter-overlay {
		background: rgba(17, 17, 17, 0.45);
		display: block;
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 0.2s ease;
		z-index: 99998;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-filter-panel {
		background: #fff;
		bottom: 0;
		box-shadow: 16px 0 34px rgba(0, 0, 0, 0.16);
		left: 0;
		max-width: 88vw;
		overflow-y: auto;
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform 0.25s ease;
		width: 340px;
		z-index: 99999;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"].is-open .wet-filter-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"].is-open .wet-filter-panel {
		transform: translateX(0);
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-filter-mobile-head {
		align-items: center;
		border-bottom: 1px solid var(--wet-line, #ece1e4);
		display: flex;
		font-size: 16px;
		justify-content: space-between;
		padding: 16px 18px;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-filter-sidebar {
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}
}

@media (max-width: 767px) {
	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-mobile-filter-toggle {
		align-items: center;
		background: var(--wet-accent, #e73568);
		border: 1px solid var(--wet-accent, #e73568);
		border-radius: 6px;
		color: #fff;
		cursor: pointer;
		display: inline-flex;
		font-size: 14px;
		font-weight: 700;
		gap: 9px;
		justify-content: center;
		margin-bottom: 16px;
		min-height: 44px;
		padding: 10px 16px;
		text-transform: uppercase;
		width: 100%;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-mobile-filter-toggle:hover,
	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-mobile-filter-toggle:focus {
		background: var(--wet-accent-dark, #c81f50);
		outline: none;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-filter-overlay {
		background: rgba(17, 17, 17, 0.45);
		display: block;
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 0.2s ease;
		z-index: 99998;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-filter-panel {
		background: #fff;
		bottom: 0;
		box-shadow: 16px 0 34px rgba(0, 0, 0, 0.16);
		left: 0;
		max-width: 88vw;
		overflow-y: auto;
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform 0.25s ease;
		width: 340px;
		z-index: 99999;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"].is-open .wet-filter-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"].is-open .wet-filter-panel {
		transform: translateX(0);
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-filter-mobile-head {
		align-items: center;
		border-bottom: 1px solid var(--wet-line, #ece1e4);
		display: flex;
		font-size: 16px;
		justify-content: space-between;
		padding: 16px 18px;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-filter-sidebar {
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}
}
