/**
 * Solve the catalog page problems here, since sass is not available
 * and style.min.css is already minified and no changes can be made
 *
 * \wp-content\themes\asic\assets\css\catalog_hacks.css
 */

.catalog__items {
	margin-bottom: 30px;
}

.catalog__active-filters .wpc-custom-selected-terms {
	width: auto;
}

.site-main > .wpc-filters-open-button-container {
	display: none !important;
}

.wpc_show_bottom_widget .wpc-filters-open-button-container {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.asic-mobile-tools-wrapper {
	display: none;
	margin-bottom: 20px;
}

.asic-mobile-tools-wrapper .wpc-filters-open-button-container {
	display: none;
}

@media (max-width: 920px) {
	.asic-mobile-tools-wrapper {
		display: none;
	}

	.asic-mobile-tools-wrapper .wpc-filters-open-button-container {
		display: block;
	}
}

.asic-mobile-tools-wrapper .wpc-filters-open-button-container .asic-filter-button {
	border: 2px #f8f8fa solid;
	display: flex;
	height: 50px;
	width: 100%;
	max-width: 170px;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	transition: all 250ms ease-in-out;
}

.asic-mobile-tools-wrapper .wpc-filters-open-button-container .asic-filter-button:hover {
	border-color: #ff6a16;
	color: #ff6a16;
}

.asic-mobile-tools-wrapper .wpc-filters-open-button-container .asic-filter-button svg path {
	transition: all 250ms ease-in-out;
}

.asic-mobile-tools-wrapper .wpc-filters-open-button-container .asic-filter-button:hover svg path {
	fill: #ff6a16;
}

.asic-mobile-tools-wrapper .wpc-filters-open-button-container .asic-filter-button .wpc-button-inner {
	display: flex;
	gap: 11px;
	font-size: 14px;
	line-height: 20px;
	color: #7d8389;
	transition: all 250ms ease-in-out;
}

.asic-mobile-tools-wrapper .wpc-filters-open-button-container .asic-filter-button:hover .wpc-button-inner {
	color: #ff6a16;
}

.filters.wpc-force-visibility {
	position: absolute !important;
}

.wpc-wrap-icons {
	line-height: inherit;
}
.wpc-wrap-icons .wpc-filter-selected-values {
	display: none !important;
}

/* Catalog: promo */
.catalog-promo {
	padding: 35px 0;
	color: #38373f;
	border-top: 1px solid #e5e7e8;
	border-bottom: 1px solid #e5e7e8;
}
.catalog-promo__grid {
	display: grid;
	grid-template-columns: minmax(0, 404px) minmax(0, 1fr);
	grid-template-areas:
		'title intro'
		'title benefits';
	column-gap: 32px;
	row-gap: 16px;
	align-items: start;
}
.catalog-promo__title {
	grid-area: title;
	align-self: center;
	margin: 0;
	max-width: 469px;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.3;
}
.catalog-promo__intro {
	grid-area: intro;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
}
.catalog-promo__intro p {
	margin: 0;
}
.catalog-promo__intro p + p {
	margin-top: 0;
}
.catalog-promo__benefits {
	grid-area: benefits;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 200px));
	gap: 12px 20px;
	justify-content: start;
}
.catalog-promo__benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 51px;
	padding: 8px 8px 8px 10px;
	border-radius: 10px;
	background: rgba(255, 235, 217, 0.3);
}
.catalog-promo__benefit-icon-wrap,
.benefit-icon-wrap {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: rgba(255, 235, 217, 0.3);
	position: relative;
}
.catalog-promo__benefit-icon-wrap::before,
.benefit-icon-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 6px;
	background: linear-gradient(315deg, #f99515 0%, #ff7316 100%);
	transform: rotate(-135.55deg);
}
.catalog-promo__benefit-icon-wrap::before {
	box-shadow: 0 0 21px 0 rgba(250, 141, 21, 0.55);
}
.catalog-promo__benefit-icon-wrap svg {
	position: relative;
	z-index: 2;
}
.catalog-promo__benefit-text {
	flex: 1 1 auto;
	min-width: 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	color: #030303;
}

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

@media (max-width: 1023px) {
	.catalog-promo {
		padding: 32px 0;
	}
	.catalog-promo__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 221px);
		grid-template-areas:
			'title benefits'
			'intro benefits';
		column-gap: 53px;
		row-gap: 20px;
	}
	.catalog-promo__title {
		align-self: start;
		max-width: none;
	}
	.catalog-promo__title br {
		display: none;
	}
	.catalog-promo__intro p + p {
		margin-top: 1.4em;
	}
	.catalog-promo__intro {
		font-weight: 400;
		font-size: 16px;
		line-height: 1.4;
	}
	.catalog-promo__benefits {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

/* Mobile: one column — title, text, then cards stacked (no side-by-side layout) */
@media (max-width: 576px) {
	.catalog-promo__grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			'title'
			'intro'
			'benefits';
		row-gap: 20px;
		column-gap: 0;
	}
	.catalog-promo__title.catalog-section-title {
		align-self: start;
		font-size: 18px;
	}
	.catalog-promo__benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 22px;
		width: 100%;
	}
	.catalog-promo__benefit {
		padding: 8px 8px 10px 13px;
		min-height: 45px;
	}
	.catalog-promo__benefit-icon-wrap {
		width: 18px;
		height: 18px;
	}
	.catalog-promo__intro {
		font-size: 12px;
	}
	.catalog-promo__benefit-text {
		font-size: 11px;
	}
	.catalog-promo__benefit:last-child {
		padding-right: 4px;
	}
}

@media (max-width: 374px) {
	.catalog-promo__benefits {
		gap: 10px 10px;
	}
}

#banner {
	scroll-margin-top: 100px;
}

@media (max-width: 1200px) {
	#banner {
		margin-bottom: 80px;
	}
}

@media (max-width: 576px) {
	#banner {
		margin-bottom: 64px;
	}
}

/* Catalog: before aside */
.catalog-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: 100%;
	margin: 32px 0;
}
.catalog-shop-toolbar__count {
	flex: 0 0 auto;
	font-size: 16px;
	line-height: 20px;
	white-space: normal;
}
.catalog-shop-toolbar__count-label {
	color: #333;
}
.catalog-shop-toolbar__count-value {
	color: #a1a1a1;
}
.catalog-shop-toolbar__actions {
	display: flex;
	align-items: center;
	gap: 20px;
}
.catalog-shop-toolbar__pill,
.catalog .btn-open-filters {
	background: #fff !important;
	color: #1e1e1e !important;
	border: 1px solid #dedede;
	border-radius: 15px;
	padding: 16px 12px;
	min-width: 140px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
}
.catalog-shop-toolbar__pill-main {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-right: 40px;
	padding-right: 10px;
	line-height: 1;
}
.catalog-shop-toolbar__pill--sort.asic-dropdown-select {
	position: relative;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	padding: 0;
	overflow: visible;
	cursor: pointer;
	height: 50px;
	min-height: 50px;
	min-width: 200px;
}
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 50px;
	min-height: 50px;
	padding: 18px 12px;
	box-sizing: border-box;
}
.catalog-shop-toolbar__pill--sort .catalog-shop-toolbar__pill-main {
	margin-right: 0;
	min-width: 0;
	flex: 1;
}
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__title,
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__selected {
	white-space: nowrap;
}
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__title {
	display: inline;
}
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__selected {
	display: none;
}
.catalog-shop-toolbar__pill--sort.has-selection .asic-dropdown-select__title {
	display: none;
}
.catalog-shop-toolbar__pill--sort.has-selection .asic-dropdown-select__selected {
	display: inline;
}
.catalog-shop-toolbar__pill--sort.is-open {
	border-color: #fff;
	border-radius: 15px 15px 0 0;
	box-shadow: none;
	filter: drop-shadow(0 4px 34.8px rgba(0, 0, 0, 0.13));
	z-index: 20;
}
.catalog-shop-toolbar__pill--sort.is-open .catalog-shop-toolbar__pill-chevron svg {
	transform: rotate(90deg);
}
.catalog-shop-toolbar__pill--sort .catalog-shop-toolbar__pill-chevron svg {
	transition: transform 0.2s ease;
}
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__list {
	position: absolute;
	top: 100%;
	right: 0;
	width: auto;
	list-style: none;
	margin: 0;
	padding: 0 12px 12px 12px;
	display: none;
	flex-direction: column;
	gap: 0px;
	background: #fff;
	border-top: none;
	border-radius: 0 0 15px 15px;
	box-shadow: none;
	visibility: visible;
	opacity: 1;
	z-index: 20;
	width: calc(100% + 2px);
	margin-right: -1px;
}
.catalog-shop-toolbar__pill--sort.is-open .asic-dropdown-select__list {
	display: flex;
}
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__list a {
	display: block;
	font-size: 12px;
	line-height: normal;
	color: #1e1e1e;
	text-decoration: none;
}
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__label,
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__text {
	color: #1e1e1e;
}
.catalog-shop-toolbar__pill--sort .asic-dropdown-select__value {
	color: #c7ced4;
}
.catalog .btn-open-filters span {
	padding-left: 0;
}

.catalog__wrap {
	display: flex;
	gap: 20px;
}

@media (min-width: 993px) {
	.catalog-shop-toolbar__pill,
	.catalog-shop-toolbar__pill--sort .asic-dropdown-select__list a {
		font-size: 14px;
	}
	.catalog-shop-toolbar__pill--filter {
		display: none !important;
	}
	.catalog__header {
		border-radius: 20px;
		background: #fff;
		border: 1px solid #e5e7e8;
		padding: 15px 18px;
		min-height: 104px;
		overflow: hidden;
	}

	.widget_wpc_chips_widget {
		display: flex;
		gap: 12px;
		align-items: baseline;
		position: relative;
	}

	.catalog__active-filters .widgettitle {
		white-space: nowrap;
		font-weight: 400;
		font-size: 14px;
		line-height: 1.78;
		color: #333;
		position: relative;
	}

	.catalog__active-filters .widgettitle:after {
		content: '';
		display: block;
		width: 100%;
		height: 1px;
		background: #e5e7e8;
		position: absolute;
		bottom: -10px;
		width: 1000%;
		left: -20px;
	}

	.catalog__active-filters .wpc-filter-chips-list {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		gap: 16px 12px;
	}

	.wpc-filter-chips-list li,
	body .wpc-filter-chips-list li.wpc-filter-chip,
	li.wpc-filter-chip {
		margin: 0 !important;
		font-size: 100%;
	}

	.wpc-filter-chip-name {
		margin-right: 0;
	}

	.catalog__active-filters .wpc-filter-chips-list .wpc-filter-chip:not(.wpc-chip-reset-all) a {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		min-height: 28px;
		padding: 0 10px;
		border-radius: 5px;
		background-color: #f8f8fa;
		border-color: transparent;
		text-decoration: none;
		font-size: 14px;
		line-height: 1;
	}
	.catalog__active-filters .wpc-filter-chips-list .wpc-filter-chip:not(.wpc-chip-reset-all) a:hover,
	.catalog__active-filters .wpc-filter-chips-list .wpc-filter-chip:not(.wpc-chip-reset-all) a:focus-visible {
		border-color: #fa8d15;
	}
	.wpc-chip-remove-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 11px;
		height: 11px;
		color: #fa8d15;
		transition: color 0.3s ease;
		line-height: 1;
	}
	.wpc-chip-content {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}
	.catalog__active-filters .wpc-filter-chips-list .wpc-chip-reset-all a {
		font-weight: 600;
		font-size: 14px;
		line-height: 1.78571;
		color: #b42f28;
		border: 0;
		padding: 0;
		transition: color 0.3s ease;
	}
	.catalog__active-filters .wpc-filter-chips-list .wpc-chip-reset-all a .wpc-chip-remove-icon {
		display: none;
	}
	.catalog__active-filters .wpc-chip-reset-all {
		position: absolute;
		left: 0;
		top: 45px;
		margin: 0;
		padding: 0;
		list-style: none;
	}
}

/* Catalog: aside filters */
.catalog__wrap .filters {
	width: 310px;
	min-width: 310px;
}
.catalog-aside-filters {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 100%;
	margin-bottom: 30px;
}
.catalog-aside-filters__promo {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 100%;
	min-height: 105px;
	padding: 12px;
	border-radius: 20px;
	background: linear-gradient(48.47deg, #ee2c72 7.79%, #4c07df 91.64%);
	box-shadow: 0 5px 12.5px rgba(12, 11, 13, 0.04);
	box-sizing: border-box;
}
.catalog-aside-filters__promo-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 21px;
}
.catalog-aside-filters__promo-title {
	margin: 0;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	color: #fff;
	white-space: nowrap;
}
.catalog-aside-filters__info {
	flex: 0 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: #fff;
	cursor: pointer;
}
.catalog-aside-filters__info--muted {
	flex: 0 0 auto;
	color: #201926;
	opacity: 0.32;
}
.catalog-aside-filters__promo-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: auto;
	padding: 8px 8px 8px 12px;
	border-radius: 12px;
	background: #fff;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: #8113bb;
	text-decoration: none;
	white-space: nowrap;
	box-sizing: border-box;
}
.catalog-aside-filters__row {
	display: flex;
	align-items: center;
	gap: 25px;
	width: 100%;
	margin-bottom: 20px;
}
.catalog-aside-filters__row-icon {
	flex: 0 0 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 100px;
	background: #3975ea;
	overflow: hidden;
}
.catalog-aside-filters__row-icon img {
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
}
.catalog-aside-filters__row-label {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 0;
}
.catalog-aside-filters__row-text {
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	color: #201926;
}
.catalog-aside-filters__toggle {
	flex: 0 0 44px;
	position: relative;
	display: block;
	width: 44px;
	height: 24px;
	cursor: pointer;
}
.catalog-aside-filters__toggle-input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0 !important;
}
.catalog-aside-filters__toggle-track {
	display: block;
	width: 44px;
	height: 24px;
	padding: 2px;
	border-radius: 100px;
	background: rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
}
.catalog-aside-filters__toggle-thumb {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background: #fff;
	box-shadow: 0 5px 25px -5px rgba(12, 11, 13, 0.04);
	transition: transform 0.3s ease;
}
.catalog-aside-filters__toggle-input:checked + .catalog-aside-filters__toggle-track .catalog-aside-filters__toggle-thumb {
	transform: translateX(20px);
	background: #fa8d15;
}

.wpc-filters-section {
	margin-bottom: 30px;
	padding: 18px 20px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
}
.wpc-filter-header {
	padding: 0 0 0 32px;
	margin: 0 -20px;
}
.wpc-filter-post_meta_num .wpc-filter-header {
	padding: 0;
	margin: 0 0 20px;
}
.wpc-opened .wpc-filter-header {
	border-bottom: 2px solid #f8f8fa;
	margin-bottom: 15px;
	padding-bottom: 10px;
}
.widget-title.wpc-filter-title,
.wpc-filter-title {
	margin: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.875;
	background: linear-gradient(-63.13deg, #f99515 7.42%, #ff7316 112.6%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.wpc-filter-layout-checkboxes .wpc-filter-title,
.wpc-filter-layout-radio .wpc-filter-title {
	background: none;
	color: #333;
	-webkit-background-clip: none;
	-webkit-text-fill-color: inherit;
	background-clip: none;
}
.wpc-filter-title button {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	gap: 16px;
	width: 100%;
	margin: 0 !important;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
}
.wpc-filter-collapsible .wpc-filter-title .wpc-open-icon,
.wpc-filter-collapsible-reverse.wpc-filter-collapsible.wpc-closed .wpc-filter-title .wpc-open-icon,
.wpc-filter-collapsible.wpc-closed .wpc-filter-title .wpc-open-icon,
.wpc-filter-has-selected.wpc-closed .wpc-filter-title .wpc-open-icon {
	border-left: 2px solid #fd8216;
	border-top: 2px solid #fd8216;
	background: none !important;
	transition: transform 0.3s ease;
	top: -2px;
}

.wpc-opened .wpc-filter-title .wpc-open-icon {
	top: 3px;
}

.wpc-filters-range-wrapper {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}
.wpc-filters-range-column {
	flex: 1;
}
.wpc-filters-range-min-column {
	margin-right: 0 !important;
}
.wpc-filters-range-min,
.wpc-filters-range-max {
	width: 100%;
	height: 40px;
	padding: 10px !important;
	border: 2px solid #e0e0e0;
	border-width: 2px !important;
	border-radius: 8px;
	background: #fff;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #333;
	box-sizing: border-box;
}
.wpc-filters-range-slider-wrapper {
	position: relative;
	padding: 5px 0;
}
.wpc-filters-range-slider-control,
.ui-slider {
	position: relative;
	height: 2px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	background: #f8f8fa !important;
}
.ui-slider-range {
	position: absolute;
	height: 2px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(176.4deg, #ff6a16 14.73%, #ffa216 111.57%);
}
.wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-handle {
	position: absolute;
	top: 50%;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	margin-top: -5px;
	border: 0;
	border-radius: 2px;
	background: linear-gradient(105.86deg, #ff6a16 14.73%, #ffa216 111.57%);
	cursor: pointer;
}

.wpc-filters-main-wrap ul.wpc-filters-ul-list {
	max-height: 196px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #fa8d15 #fff;
}
.wpc-filters-main-wrap ul.wpc-filters-ul-list::-webkit-scrollbar {
	width: 6px;
}
.wpc-filters-main-wrap ul.wpc-filters-ul-list::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 2px;
}
.wpc-filters-main-wrap ul.wpc-filters-ul-list::-webkit-scrollbar-thumb {
	background: #fa8d15;
	border-radius: 2px;
}
.wpc-filters-main-wrap ul.wpc-filters-ul-list::-webkit-scrollbar-button {
	width: 0;
	height: 0;
	background-color: #ccc;
	display: block; /* Required in some browsers to show */
	height: 16px;
}
body .wpc-filters-main-wrap li.wpc-term-item {
	margin-bottom: 10px !important;
}
.wpc-term-item-content-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}
.wpc-term-item-content-wrapper input[type='checkbox'],
.wpc-term-item-content-wrapper input[type='radio'] {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	margin: 0 !important;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	background: #fff;
	appearance: none;
	cursor: pointer;
	position: relative;
}
.wpc-term-item-content-wrapper input[type='radio'] {
	border-radius: 50%;
}
.wpc-term-item-content-wrapper input[type='radio']::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(-82.06deg, #f99515 7.42%, #ff7316 112.6%);
	opacity: 0;
	transform: translate(-50%, -50%);
}
.wpc-term-item-content-wrapper input[type='radio']:checked {
	border-color: #fa8d15;
}
.wpc-term-item-content-wrapper input[type='radio']:checked::after {
	opacity: 1;
}
.wpc-term-item-content-wrapper input[type='checkbox']:checked {
	border: 3px solid #fa8d15;
	background: linear-gradient(-82.06deg, #f99515 7.42%, #ff7316 112.6%);
	background-image:
		url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.98959 11.293L10.9393 16.2427L9.52513 17.657L4.57538 12.7072L5.98959 11.293Z" fill="white" /><path d="M9.52512 14.828L18.0104 6.34277L19.4246 7.75698L10.9393 16.2422L9.52512 14.828Z" fill="white" /></svg>'),
		linear-gradient(-82.06deg, #f99515 7.42%, #ff7316 112.6%);
	background-position:
		center,
		0 0;
	background-size:
		24px 24px,
		100% 100%;
	background-repeat: no-repeat;
}
.wpc-filters-main-wrap input[type='checkbox']:checked:after {
	opacity: 0 !important;
}
.wpc-term-item-content-wrapper label {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.78571 !important;
	color: #333;
	cursor: pointer;
}
.wpc-filters-main-wrap li.wpc-term-item a {
	margin-right: 0;
}
.wpc-term-count-brackets-open,
.wpc-term-count-brackets-close {
	display: none;
}

.wpc-term-item-content-wrapper span.wpc-term-count {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	padding-block: 3px;
	padding-inline: 1px;
	min-width: 24px;
	width: auto !important;
	min-height: 24px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1 !important;
	text-align: center;
	color: #fff;
	background: #38373f;
	opacity: 1;
}

.wpc-filters-main-wrap a.wpc-toggle-a {
	color: #fa8d15;
}

.catalog__items ul.products {
	grid-template-columns: repeat(3, 1fr);
}

/* Pagination */
.shop-footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
	padding-top: 0;
	border-top: none;
}

.shop-footer-row .woocommerce-result-count {
	margin: 0;
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	color: #a1a1a1;
	white-space: nowrap;
}

.shop-footer-row .woocommerce-result-count span {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #333;
}

.shop-footer-row .woocommerce-pagination {
	margin: 0;
}

.shop-footer-row ul.page-numbers {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-footer-row ul.page-numbers li {
	margin: 0;
	padding: 0;
}

.shop-footer-row ul.page-numbers a.page-numbers,
.shop-footer-row ul.page-numbers span.page-numbers {
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	color: #333;
	text-decoration: none;
}

.shop-footer-row ul.page-numbers span.page-numbers.current {
	color: #fa8d15;
}

.shop-footer-row ul.page-numbers span.page-numbers.dots {
	color: #333;
}

.shop-footer-row ul.page-numbers .prev.page-numbers,
.shop-footer-row ul.page-numbers .next.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border-radius: 10px;
	font-size: 0;
	line-height: 0;

	background: linear-gradient(180deg, #f99515 0%, #ff7316 100%);
	color: #fff;
	border: none;
}

.shop-footer-row ul.page-numbers .prev.page-numbers {
	margin-right: 25px;
}

.shop-footer-row ul.page-numbers .next.page-numbers {
	margin-left: 25px;
}

.shop-footer-row ul.page-numbers .prev.page-numbers.disabled,
.shop-footer-row ul.page-numbers .next.page-numbers.disabled {
	background: #fff;
	color: #c6c6cb;
	border: 2px solid #e6e6e6;
}

.shop-footer-row ul.page-numbers .prev.page-numbers::before,
.shop-footer-row ul.page-numbers .next.page-numbers::before {
	width: 7px;
	height: 12px;
	background: url(../img/catalog/arrow-right.svg) center / contain no-repeat;
	transform: translate(-50%, -50%) rotate(0deg);
}

.shop-footer-row ul.page-numbers .prev.page-numbers.disabled::before,
.shop-footer-row ul.page-numbers .next.page-numbers.disabled::before {
	background: url(../img/catalog/arrow-right=disabled.svg) center / contain no-repeat;
}

.shop-footer-row ul.page-numbers .prev.page-numbers::before {
	transform: translate(-50%, -50%) rotate(180deg);
}

.shop-footer-row ul.page-numbers span.prev.page-numbers {
	pointer-events: none;
	cursor: default;
}

.catalog .woocommerce-pagination ul li:first-child span.current::before,
.catalog .woocommerce-pagination ul li:first-child span.current::after {
	display: none;
}

@media (max-width: 1200px) {
	.catalog__items ul.products,
	.searchsec-items.grid-col-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.shop-footer-row ul.page-numbers {
		gap: 10px;
	}
	.catalog__wrap .filters {
		transition: none !important;
		position: fixed;
		left: 0;
		visibility: hidden;
		max-width: 100%;
	}
	.wpc-overlay-visible #tidio-chat {
		visibility: hidden;
	}
	.wpc_show_bottom_widget .wpc-filters-widget-content {
		top: 0;
		border-radius: 0;
	}
	.wpc_show_bottom_widget .wpc-filters-widget-containers-wrapper {
		scrollbar-width: thin;
		scrollbar-color: #fa8d15 #fff;
	}
	.wpc-filters-widget-controls-container {
		padding: 0px;
		border-radius: 20px;
		background: #fff;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
		border-top: 0;
		margin-top: 30px;
	}

	.wpc-filters-main-wrap .wpc-filters-widget-controls-container a,
	.wpc-filters-main-wrap a.wpc-filters-reset-button,
	.wpc-filters-main-wrap a.wpc-filters-submit-button {
		height: 40px;
		border-radius: 12px;
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
	}

	.wpc_show_bottom_widget .wpc-filters-widget-containers-wrapper {
		padding: 50px 60px 0;
	}

	.wpc_show_bottom_widget .wpc-filters-widget-wrapper {
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}
	.wpc_show_bottom_widget .wpc-filters-widget-wrapper > div {
		flex: 1 1 100%;
	}
	.wpc_show_bottom_widget .wpc-filters-widget-wrapper > div.catalog-aside-filters,
	.wpc_show_bottom_widget .wpc-filters-widget-wrapper > div.wpc-filter-post_meta_num {
		flex: 0 0 calc(50% - 10px);
	}
	.catalog-aside-filters,
	.catalog-aside-filters__row,
	.wpc-filters-section,
	.wpc-filters-range-slider-wrapper {
		margin-bottom: 0;
	}
	.wpc-filters-range-slider-wrapper {
		margin-top: 20px;
	}
	.catalog-aside-filters + .wpc-filter-post_meta_num {
		margin-bottom: 20px;
	}
	.filters .wpc-widget-close-container {
		padding: 0 60px;
		box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
		background: #fff;
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: space-between;
		position: relative;
		z-index: 2;
	}
	.filters .wpc-widget-popup-title {
		text-align: start;
		font-weight: 700;
		font-size: 18px;
		line-height: 1.1;
		color: #38373f;
		position: static;
	}
	.wpc-widget-close-container .wpc-icon-html-wrapper {
		width: 40px;
		height: 40px;
		background: #333;
		border-radius: 8px;
		left: 0;
		top: 0;
	}
	.wpc-widget-close-container a.wpc-widget-close-icon {
		width: 70px;
		height: 70px;
		justify-content: end;
	}
	.wpc-widget-close-container .wpc-icon-html-wrapper span {
		opacity: 0;
	}
	.wpc-widget-close-container .wpc-icon-html-wrapper:before {
		content: '';
		display: block;
		width: 9px;
		height: 9px;
		background: url('../img/catalog/filter-close.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.wpc_show_bottom_widget .wpc-filters-widget-top-container {
		position: static;
		padding: 0;
		border-bottom: 0;
	}
	.wpc_show_bottom_widget .wpc-filters-widget-top-container:before {
		display: none;
	}
	.wpc_show_bottom_widget .wpc-widget-top-inside {
		overflow: visible;
		flex-wrap: wrap;
	}
	.wpc_show_bottom_widget .wpc-inner-widget-chips-wrapper {
		overflow: visible;
		width: 100%;
		padding: 0;
	}
	.wpc_show_bottom_widget .wpc-inner-widget-chips-wrapper .wpc-filter-chips-list {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		align-content: flex-start;
		gap: 10px;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list li,
	.wpc_show_bottom_widget body .wpc-filter-chips-list li.wpc-filter-chip,
	.wpc_show_bottom_widget li.wpc-filter-chip {
		margin: 0 !important;
		min-width: 0;
		font-size: 100%;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-filter-chip:not(.wpc-chip-reset-all) {
		flex: 0 0 auto;
		max-width: 100%;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-filter-chip:not(.wpc-chip-reset-all) a {
		display: inline-flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		width: auto;
		max-width: 100%;
		min-height: 34px;
		padding: 0 10px;
		border: 0;
		border-radius: 5px;
		background: linear-gradient(-68.1deg, #f99515 7.42%, #ff7316 112.6%);
		color: #fff;
		font-weight: 500;
		font-size: 14px;
		line-height: 25px;
		text-decoration: none;
		box-sizing: border-box;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-filter-chip:not(.wpc-chip-reset-all) a:hover,
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-filter-chip:not(.wpc-chip-reset-all) a:focus-visible {
		opacity: 0.9;
		box-shadow: none;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-chip-content {
		display: inline-flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		min-width: 0;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-filter-chip-name {
		margin-right: 0;
		max-width: none;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-chip-remove-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 12px;
		height: 15px;
		color: #fff;
		font-size: 15px;
		line-height: 1;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-chip-reset-all {
		order: 999;
		flex: 0 0 100%;
		width: 100%;
		margin-top: 10px !important;
		margin-bottom: 30px !important;
		text-align: start;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-chip-reset-all a {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		width: auto;
		min-height: 0;
		padding: 0;
		border: 0;
		border-radius: 8px;
		background: none;
		color: #38373f;
		font-weight: 500;
		font-size: 15px;
		line-height: 1.33333;
		text-decoration: none;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-chip-reset-all a:hover,
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-chip-reset-all a:focus-visible {
		color: #fa8d15;
		opacity: 1;
	}
	.wpc_show_bottom_widget .wpc-filter-chips-list .wpc-chip-reset-all .wpc-chip-remove-icon {
		display: flex;
		color: #fa8d15;
		font-size: 18px;
	}
	.catalog__header,
	.wpc-instead-of-posts-found {
		display: none;
	}
}

@media (max-width: 740px) {
	.wpc_show_bottom_widget .wpc-filters-widget-wrapper > div.catalog-aside-filters,
	.wpc_show_bottom_widget .wpc-filters-widget-wrapper > div.wpc-filter-post_meta_num {
		flex: 0 0 100%;
	}

	.shop-footer-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-top: 45px;
	}

	.shop-footer-row .woocommerce-result-count {
		max-width: none;
		white-space: normal;
	}

	.shop-footer-row .woocommerce-pagination {
		flex: 1;
		min-width: 0;
		width: 100%;
	}

	.shop-footer-row ul.page-numbers {
		justify-content: center;
		position: relative;
		width: 100%;
		padding: 0 52px;
	}

	.shop-footer-row ul.page-numbers li:first-child,
	.shop-footer-row ul.page-numbers li:last-child {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.shop-footer-row ul.page-numbers li:first-child {
		left: 0;
	}

	.shop-footer-row ul.page-numbers li:last-child {
		right: 0;
	}

	.shop-footer-row ul.page-numbers .prev.page-numbers,
	.shop-footer-row ul.page-numbers .next.page-numbers {
		margin: 0;
	}

	.shop-footer-row ul.page-numbers span.page-numbers.current::before,
	.shop-footer-row ul.page-numbers span.page-numbers.current::after {
		content: none;
	}

	.shop-footer-row ul.page-numbers li:first-child span.page-numbers.current,
	.shop-footer-row ul.page-numbers li:last-child span.page-numbers.current {
		padding: 0;
	}

	.catalog-shop-toolbar__count {
		display: none;
	}
	.catalog-shop-toolbar__pill,
	.catalog .btn-open-filters,
	.catalog-shop-toolbar__pill--sort.asic-dropdown-select {
		min-width: calc(50% - 10px);
	}
	.catalog-shop-toolbar__actions {
		width: 100%;
	}
	.woocommerce-pagination {
		width: 100%;
	}
}

@media (max-width: 700px) {
	.burger-btn {
		width: 32px;
		height: 32px;
		min-height: 32px;
	}
	.catalog__items ul.products,
	.searchsec-items.grid-col-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.catalog-promo {
		padding: 20px 0;
	}
	.filters .wpc-widget-close-container,
	.wpc_show_bottom_widget .wpc-filters-widget-containers-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
	.wpc_show_bottom_widget .wpc-filters-widget-containers-wrapper {
		padding-top: 45px;
	}
	.catalog-shop-toolbar {
		margin: 20px 0;
	}
}
