.card_product-wrapper {
	box-shadow: 0px 4px 24px 0px #00000040;
}

/* --------------------------------------------------------------------- */

.product-collections-container {
	display: grid;
	transition: all 0.25s ease;
}

.product-collections-container:is(.filter-active) {
	gap: 36px;
}

@media (min-width: 1280px) {
	.product-collections-container {
		grid-template-columns: 0fr 3fr;
	}

	.product-collections-container:is(.filter-active) {
		grid-template-columns: 0.9fr 3fr;
	}
}

.product-collections-container .column-left {
	position: relative;
	transition: all 0.3s ease;
	width: 100%;
	min-width: 0;
}

@media (max-width: 1024px) {
	.product-collections-container .column-left {
		display: none;
	}

	.product-collections-container:is(.filter-active) .column-left {
		display: block;
	}
}

.product-collections-container .filter-container {
	position: sticky;
	top: 140px;
	padding-top: 12px;
}

.product-collections-container .filter-box {
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);

	transition: all 0.1s ease;
	visibility: hidden;
	opacity: 0;
	transform: translateX(-50%);
}

.product-collections-container:is(.filter-active) .filter-box {
	transition: all 0.2s ease 0.2s, transform 0.25s cubic-bezier(0.24, -0.26, 0.27, 1.55) 0.2s;
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

.product-collections-container .column-right {
	position: relative;
	z-index: 1;
}

/* --------------------------------------------------------------------- */

.product-collections-container ul.products:not(.elementor-grid) {
	display: grid;
	gap: 26px 24px;
	margin-bottom: 64px;
}

@media (min-width: 768px) {
	.product-collections-container ul.products:not(.elementor-grid) {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1280px) {
	.product-collections-container ul.products:not(.elementor-grid) {
		grid-template-columns: repeat(4, 1fr);
	}

	.product-collections-container:is(.filter-active) ul.products:not(.elementor-grid) {
		grid-template-columns: repeat(3, 1fr);
	}
}

.product-collections-container ul.products::before {
	display: none;
}

.product-collections-container ul.products:not(.elementor-grid) li.product {
	width: 100%;
	margin: 0;
}

.product-collections-container ul.products li.product a img {
	margin: 0;
}

/* --------------------------------------------------------------------- */

.filter-box {
	display: flex;
	gap: 24px;
	border-radius: 24px;
	padding: 24px;
	border: 1px solid #ffd966;
	font-weight: 500;
	max-width: 1024px;
}

@media (min-width: 768px) {
	.filter-box {
		padding: 36px;
	}
}

@media (min-width: 1280px) {
	.filter-box {
		max-width: 360px;
		padding: 36px 32px;
	}
}

.filter-box .filter-box-inner,
.filter-box > form {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.filter-heading {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.filter-heading h5 {
	color: #ffd966;
	font-size: 20px;
	margin-bottom: 0;
}

.filter-heading a.catalog-filter-reset {
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.filter-heading a.catalog-filter-reset:hover {
	color: #ffbf00;
}

.filter-box .search-filter-style--control-reset .search-filter-input-button {
	-webkit-appearance: none;
	appearance: none;
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 2px;
	line-height: inherit;

	padding: 0;
	border: 0 none;
	background-color: transparent;
	color: currentColor;
}

.filter-box .search-filter-style--control-reset .search-filter-input-button:hover {
	background-color: transparent;
	color: #ffbf00;
}

/* ... */

.filter-section {
	padding-block: 10px;
	margin-block: 0 8px;
}

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

.filter-section:not(.collapsible) {
	padding-inline: 5px;
}

.filter-section.collapsible {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: all 0.2s ease;

	background-color: #1a1725;
	border-radius: 16px;
}

.filter-title {
	position: relative;
	cursor: pointer;
	user-select: none;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 0;
	color: #fff;
}

.filter-title span.toggle-icon {
	position: absolute;
	right: 0;
	top: 42%;
	transform: translateY(-50%);
	height: 11px;
}

.filter-title span.toggle-icon svg {
	transition: transform 0.3s ease;
	fill: currentColor;
}

.filter-section.is-open .toggle-icon svg {
	transform: rotate(135deg);
}

.filter-section.collapsible:not(.is-open) > .fields-wrapper {
	display: none;
}

.filter-section .fields-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.filter-section label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	line-height: 1.7em;
	color: #fff;
}

.filter-section label .label-icon {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	width: 16px;
	border-radius: 4px;
	border: 2px solid #ffffff66;
}

.filter-section label:hover {
	color: #ffbf00;
}

.filter-section label:hover .label-icon {
	border-color: currentColor;
}

.filter-section label input[type='checkbox']:checked + .label-icon {
	background-color: #ffbf00;
	border-color: #ffbf00;
}

.filter-section label input[type='checkbox'] + .label-icon::before {
	content: '';
	width: 100%;
	height: 100%;
	mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTguOTI3NjYgMC41MzA4NUM5LjI4MTk0IDAuODI2MDgyIDkuMzI3MjggMS4zNTM2NSA5LjAyODU2IDEuNzA0OTlMNC4wNDY1MiA3LjU2NDY3QzMuNjYyMTcgOC4wMTY3NCAyLjk3MDk4IDguMDM2NjEgMi41NjEyOSA3LjYwNzM3TDAuNTcyNzI0IDUuNTIzOTVDMC4yNTU1NjggNS4xOTE2NyAwLjI2NTM5NCA0LjY2NTg5IDAuNTk0NzQ1IDQuMzQ1NjlDMC45MjYyNTIgNC4wMjMzOSAxLjQ1NjI3IDQuMDMwODUgMS43Nzg1NiA0LjM2MjM2TDMuMzI3NiA1Ljk1NTY1TDcuNzU5NzkgMC42MzcwMkM4LjA1Mjk3IDAuMjg1MjA0IDguNTc1ODUgMC4yMzc2NyA4LjkyNzY2IDAuNTMwOFoiIGZpbGw9IiMzNTMwNEMiLz48L3N2Zz4=');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: #35304c;

	transform: scale(0);
	transition: transform 0.2s ease;
}

.filter-section label input[type='checkbox']:checked + .label-icon::before {
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.36, 2.29);
	transform: scale(0.9);
}

/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

@keyframes arrowDown {
	0%,
	100% {
		transform: translateY(0%);
	}
	50% {
		transform: translateY(25%);
	}
} /*@keyframes*/

@keyframes arrowUp {
	0%,
	100% {
		transform: translateY(0%);
	}
	50% {
		transform: translateY(25%);
	}
} /*@keyframes*/

/* ... */

.search-filter-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.search-filter-field.search-filter-style--choice-checkbox {
	--search-filter-input-active-icon-color: #ffbf00;
}

.search-filter-label {
	position: relative;
	cursor: pointer;
	user-select: none;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 0;

	color: #fff;
}

.search-filter-label .search-filter-label__toggle-icon {
	fill: currentColor;
	aspect-ratio: 1 / 1;
	transition: transform 0.25s ease 0.25s;
}

.search-filter-label__toggle-icon--down {
	transform: rotateX(0deg);
}

.search-filter-label__toggle-icon--up {
	transform: rotateX(180deg);
}

.search-filter-label[aria-expanded='true'] .search-filter-label__toggle-icon svg {
	animation: arrowDown 0.2s ease;
}

.search-filter-label[aria-expanded='false'] .search-filter-label__toggle-icon svg {
	animation: arrowUp 0.2s ease;
}

.search-filter-input-checkbox .search-filter-input-checkbox__container {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.7em;
	color: #fff;
}

.search-filter-input-checkbox__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	line-height: 1.7em;
	padding-left: 0;
	color: currentColor;
}

@media (max-width: 768px) {
	.search-filter-input-checkbox__label {
		justify-content: start;
	}
} /* @media */

.search-filter-input-checkbox__label .search-filter-input-checkbox__count {
	font-size: inherit;
	font-weight: 400;
	margin-inline: 0 6px;
	color: #ffffff66;
}

.search-filter-input-checkbox__control {
	aspect-ratio: 1/1;
	width: 16px;
	height: 16px;

	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 4px;
	border: 2px solid #ffffff66;

	transition: none 0s;
}

.search-filter-input-checkbox__container:hover {
	color: #ffbf00;
}

.search-filter-input-checkbox__container:hover .search-filter-input-checkbox__control {
	border-color: #ffbf00;
}

.search-filter-input-checkbox--is-active .search-filter-input-checkbox__control {
	background-color: #ffbf00;
	border-color: #ffbf00;
}

.search-filter-input-checkbox__control > svg,
.search-filter-input-checkbox > .search-filter-input-checkbox__container > .search-filter-input-checkbox__control > svg {
	fill: currentColor;
	transition: transform 0.2s ease;
	transform: scale(0);
	outline: 0 none;
	background-color: #1a1725;
}

.search-filter-input-checkbox--is-active > .search-filter-input-checkbox__container > .search-filter-input-checkbox__control > svg {
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.36, 2.29);
	transform: scale(1.5);
}

/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

.search-filter-input-text {
	cursor: text;
	position: relative;
	outline: 0;
	background-color: #f5f5f5;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: var(--search-filter-scale-padding-vertical, 12px) 24px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.2s;
	color: #876c51;

	font-weight: 500;
	line-height: 1;

	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}

.search-filter-input-text:hover {
	border-color: transparent;
}

.search-filter-input-text:is(.search-filter-input-text--focused) {
	color: var(--theme-color-1);
	border-color: currentColor;
	background-color: transparent;
	-webkit-backdrop-filter: blur(5px) contrast(1.2);
	backdrop-filter: blur(5px) contrast(1.2);
}

.search-filter-input-text input[type='text'].search-filter-input-text__input,
.search-filter-input-text input[type='text'].search-filter-input-text__input:hover {
	border: 0 none;
	background-color: transparent;
	padding: var(--search-filter-scale-padding-vertical, 0) 0 !important;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	font: inherit;
	line-height: inherit;
	color: currentColor;
}

.search-filter-input-text input[type='text'].search-filter-input-text__input::placeholder {
	font: inherit;
	color: currentColor;
}

.search-filter-input-text input[type='text'].search-filter-input-text__input:focus {
	line-height: inherit;
	color: #ffbf00;
}

.search-filter-input-text .search-filter-icon {
	cursor: pointer;
	margin: 0;
	padding: 0;
	color: currentColor;

	order: 1;
	grid-area: 1 / 2;
}

.search-filter-input-text .search-filter-icon svg {
	color: currentColor;
	fill: currentColor;

	aspect-ratio: 1 / 1;
	width: 18px;
	height: auto;
	transform: translateX(4px);
}

.search-filter-input-text input[type='text'].search-filter-input-text__input:not(:placeholder-shown) ~ .search-filter-input-text__icon {
	display: none;
}

/* .search-filter-input-text__clear-button {
	opacity: 0;
} */

/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */

.search-filter-field--control-type-sort {
	display: flex;
	flex-direction: row;
	font: inherit;
	gap: 12px;
	width: 100%;
}

.search-filter-field--control-type-sort .search-filter-label {
	width: auto;
	margin-right: 0.25rem;
	margin-block: auto;
	flex-shrink: 0;
}

.search-filter-field--control-type-sort .search-filter-component-combobox {
	cursor: pointer;
	background-color: #ffbf00;
	border: 1px solid transparent;
	--search-filter-input-color: #122b3e;
	color: var(--search-filter-input-color);
	border-radius: 8px;
	padding: 6px 16px;
	width: 100%;
	flex: 1;

	font: inherit;
	line-height: 1.5;

	transition: all 0.25s ease;
}

@media (min-width: 1200px) {
	.search-filter-field--control-type-sort .search-filter-component-combobox {
		max-width: 256px;
	}
} /* @media */

/* .search-filter-field--control-type-sort .search-filter-component-combobox::after {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	right: 0.5em;
	height: 100%;
	width: 1em;
	padding: inherit;

	mask-image: url('data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2225%22%20viewBox%3D%220%200%2016%2025%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1.4375%207.02694L7.69083%200.774186C7.73141%200.733549%207.77961%200.70131%207.83266%200.679314C7.8857%200.657318%207.94257%200.645996%208%200.645996C8.05743%200.645996%208.11429%200.657318%208.16734%200.679314C8.22039%200.70131%208.26859%200.733549%208.30917%200.774186L14.5625%207.02694%22%20stroke%3D%22%23122B3E%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M14.5625%2017.2648L8.30917%2023.5175C8.26857%2023.5582%208.22038%2023.5904%208.16736%2023.6124C8.11427%2023.6344%208.0574%2023.6457%208%2023.6457C7.9426%2023.6457%207.88573%2023.6344%207.83264%2023.6124C7.77962%2023.5904%207.73143%2023.5582%207.69083%2023.5175L1.4375%2017.2648%22%20stroke%3D%22%23122B3E%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 0.92em auto;
	background-color: #1a1725;
} */

.search-filter-field--control-type-sort .search-filter-component-combobox:is(.search-filter-component-combobox-base--focused) {
	--search-filter-input-color: var(--theme-color-1);
	color: var(--search-filter-input-color);
	border-color: currentColor;
	background-color: transparent;
	-webkit-backdrop-filter: blur(5px) contrast(1.2);
	backdrop-filter: blur(5px) contrast(1.2);
}

.search-filter-field--control-type-sort .search-filter-component-combobox__header {
	gap: 16px;
}

.search-filter-component-combobox--mode-single .search-filter-component-combobox__actions.search-filter-component-combobox__actions--empty {
	padding: 0;
}

.search-filter-component-combobox .search-filter-component-combobox__selection,
.search-filter-component-combobox .search-filter-component-combobox__actions .search-filter-component-combobox__actions-input {
	cursor: pointer;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	line-height: inherit;
	font: inherit;
	padding-block: 6px;
	color: currentColor;
}

.search-filter-component-combobox--search-disabled .search-filter-component-combobox__selection::after {
	display: none;
}

.search-filter-component-combobox .search-filter-component-combobox__actions .search-filter-component-combobox__actions-input::placeholder,
.search-filter-component-combobox .search-filter-component-combobox__selection-placeholder {
	font: inherit;
	color: currentColor;
}

ul.search-filter-component-popup.search-filter-component-combobox-base__listbox {
	border-radius: 8px;
	background-color: var(--theme-color-3);
	font-weight: 500;
	color: var(--theme-color-2);
	border: 1px solid #1a1725;
}

li.search-filter-component-combobox-base__listbox-option {
	padding: 12px 16px;
	cursor: pointer;
}

li.search-filter-component-combobox-base__listbox-option--selected {
	background-color: var(--theme-color-1);
	color: #1a1725;
}

.search-filter-component-combobox__listbox-toggle::before,
.search-filter-component-combobox .search-filter-component-combobox__listbox-toggle .search-filter-icon {
	display: none;
}

.search-filter-component-combobox .search-filter-component-combobox__listbox-toggle {
	width: 0.9em;
	mask-image: url('data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2225%22%20viewBox%3D%220%200%2016%2025%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1.4375%207.02694L7.69083%200.774186C7.73141%200.733549%207.77961%200.70131%207.83266%200.679314C7.8857%200.657318%207.94257%200.645996%208%200.645996C8.05743%200.645996%208.11429%200.657318%208.16734%200.679314C8.22039%200.70131%208.26859%200.733549%208.30917%200.774186L14.5625%207.02694%22%20stroke%3D%22%23122B3E%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M14.5625%2017.2648L8.30917%2023.5175C8.26857%2023.5582%208.22038%2023.5904%208.16736%2023.6124C8.11427%2023.6344%208.0574%2023.6457%208%2023.6457C7.9426%2023.6457%207.88573%2023.6344%207.83264%2023.6124C7.77962%2023.5904%207.73143%2023.5582%207.69083%2023.5175L1.4375%2017.2648%22%20stroke%3D%22%23122B3E%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 100% auto;
	background-color: #1a1725;
	flex-basis: auto;
}

.search-filter-component-combobox:is(.search-filter-component-combobox-base--focused) .search-filter-component-combobox__listbox-toggle {
	background-color: var(--theme-color-1);
}

.search-filter-component-combobox.search-filter-component-combobox-base--listbox-visible .search-filter-component-combobox__listbox-toggle {
	transform: none;
}

.search-filter-component-combobox__clear-selection:not(.search-filter-component-combobox--hidden) + .search-filter-component-combobox__listbox-toggle {
	display: none;
}

.search-filter-component-combobox .search-filter-component-combobox__clear-selection {
	flex: 0;
	color: inherit;
	padding: 0;
}

.search-filter-component-combobox .search-filter-component-combobox__clear-selection .search-filter-icon svg {
	color: inherit;
	fill: currentColor;
}
