
@font-face {
	font-family: 'Cormorant Garamond';
	font-style: italic;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/cormorant-garamond-italic-500-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D0r0-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'Cormorant Garamond';
	font-style: italic;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/cormorant-garamond-italic-500-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.zap-shop-filters * {
	box-sizing: border-box;
}
.zap-shop-filters {
	-webkit-font-smoothing: antialiased;
}

.zap-shop-filters__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 0 0 16px;
	border-bottom: 1px solid #F3EDE8;
}
.zap-shop-filters__title {
	margin: 0;
	/*font-family: "Cormorant Garamond", serif;*/
	/* font-style: italic; */
	font-weight: 500;
	font-size: 26px;
	color: #1a1714;
	letter-spacing: -.01em;
	line-height: 1;
}
.zap-shop-filters__header-reset {
	display: none;
	color: #d1466f;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	letter-spacing: .01em;
}
.zap-shop-filters__header-reset:hover {
	color: #1a1714;
}


.zap-shop-filters__section {
	padding: 18px 0;
	border-bottom: 1px solid #F3EDE8;
}

.zap-shop-filters__section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	user-select: none;
	color: inherit;
	font: inherit;
	text-align: left;
	padding: 5px 15px;

}

.zap-shop-filters__section-title:hover{
	background-color: #f3f0ea86;
	box-shadow: unset;
}



.zap-shop-filters__section-title p {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
	color: #1a1714;
	font-family: inherit;
}
.zap-caret {
	width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	color: #8a847d;
	transition: transform .2s ease;
	flex-shrink: 0;
}
.zap-shop-filters__section[data-open="0"] .zap-caret {
	transform: rotate(-90deg);
}


.zap-shop-filters__section-body {
	padding-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: hidden;

	opacity: 1;
	transition: max-height .35s ease, padding .3s ease, opacity .25s ease;
	padding: 5px 15px;
}
.zap-shop-filters__section[data-open="0"] .zap-shop-filters__section-body {
	max-height: 0;
	padding-top: 0;
	opacity: 0;
}

.zap-shop-filters__section-body .show-more:hover{
	background-color: unset;
	box-shadow: unset;
	color: #000;
}

.zap-check {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	color: #3b332a;
	line-height: 1.4;
	padding: 2px 0;

	position: relative;
}
.zap-check:hover {
	color: #1a1714;
}
.zap-check input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}
.zap-check__box {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	border-radius: 5px;
	border: 1.25px solid #e0d8cc;
	background: #fff;
	display: grid;
	place-items: center;
	transition: all .15s ease;
}
.zap-check__box svg {
	width: 11px;
	height: 11px;
	color: #fff;
	opacity: 0;
	transform: scale(.6);
	transition: all .15s ease;
}
.zap-check input:checked + .zap-check__box {
	background: #1a1714;
	border-color: #1a1714;
}
.zap-check input:checked + .zap-check__box svg {
	opacity: 1;
	transform: scale(1);
}
.zap-check__lbl {
	flex: 1;
	display: flex;
	justify-content: space-between;
	gap: 8px;
	align-items: baseline;
}
.zap-check__num {
	color: #b0a89c;
	font-size: 11px;
	font-variant-numeric: tabular-nums;
	font-weight: 500;
}


.zap-radio {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	color: #3b332a;
	line-height: 1.4;
	padding: 2px 0;


	position: relative;
}
.zap-radio:hover {
	color: #1a1714;
}
.zap-radio input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}
.zap-radio__dot {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	border-radius: 999px;
	border: 1.25px solid #e0d8cc;
	background: #fff;
	display: grid;
	place-items: center;
}
.zap-radio__dot::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #1a1714;
	transform: scale(0);
	transition: transform .15s ease;
}
.zap-radio input:checked + .zap-radio__dot {
	border-color: #1a1714;
}
.zap-radio input:checked + .zap-radio__dot::after {
	transform: scale(1);
}


.zap-shop-filters__checklist {
list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 500px;
    height: 100%;
    padding-right: 10px;
    overflow-y: auto;
}
.zap-filters-item--hidden {
	display: none;
}
.zap-shop-filters__checklist.is-expanded .zap-filters-item--hidden {
	display: list-item;
}
.zap-shop-filters__checklist a {
	color: #3b332a;
	font-size: 13px;
	text-decoration: none;
	display: block;
	padding: 3px 0;
	line-height: 1.4;
}
.zap-shop-filters__checklist a:hover {
	color: #1a1714;
}
.zap-shop-filters__cat-active {
	font-size: 13px;
	color: #1a1714;
	font-weight: 600;
	display: block;
	padding: 3px 0;
	line-height: 1.4;
}


.zap-range-inputs {
	display: grid;
	grid-template-columns: 1fr 8px 1fr;
	gap: 0;
	align-items: center;
}
.zap-range-sep {
	height: 1px;
	background: #e0d8cc;
	margin: 0 6px;
}
.zap-range-inputs label {
	position: relative;
	display: block;
}
.zap-range-inputs input[type="number"] {
	width: 100%;
	padding: 8px 6px 8px 28px;
	border: 1px solid #e0d8cc;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	font-size: 12px;
	color: #1a1714;
	outline: none;
	font-variant-numeric: tabular-nums;
	-moz-appearance: textfield;
}
.zap-range-inputs input[type="number"]::-webkit-inner-spin-button,
.zap-range-inputs input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.zap-range-inputs input[type="number"]:focus {
	border-color: #1a1714;
}
.zap-pfx {
	position: absolute;
	left: 9px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 10px;
	color: #9b948a;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	pointer-events: none;
}

.zap-price-slider {
	position: relative;
	height: 32px;
	margin: 4px 0;
}
.zap-price-slider__track {
	position: absolute;
	left: 0;
	right: 0;
	top: 14px;
	height: 4px;
	background: #ece4d4;
	border-radius: 999px;
	pointer-events: none;
}
.zap-price-slider__range {
	position: absolute;
	top: 0;
	height: 100%;
	background: #1a1714;
	border-radius: 999px;
}
.zap-price-slider__thumb {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	margin: 0;
	padding: 0;
	pointer-events: none;
}
.zap-price-slider__thumb:focus {
	outline: none;
}
.zap-price-slider__thumb::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid #1a1714;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
	cursor: grab;
	pointer-events: all;
}
.zap-price-slider__thumb::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid #1a1714;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
	cursor: grab;
	pointer-events: all;
}
.zap-price-slider__thumb--min {
	z-index: 3;
}
.zap-price-slider__thumb--max {
	z-index: 4;
}

.zap-price-slider__scale {
	position: relative;
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: #8a847d;
	margin-top: 6px;
}
.zap-price-slider__scale-mid {
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
}


.zap-f-search {
	position: relative;
}
.zap-f-search input {
	width: 100%;
	padding: 8px 10px 8px 30px;
	border: 1px solid #e0d8cc;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	font-size: 12px;
	color: #1a1714;
	outline: none;
}
.zap-f-search input:focus {
	border-color: #1a1714;
}
.zap-f-search svg {
	position: absolute;
	left: 9px;
	top: 50%;
	transform: translateY(-50%);
	width: 13px;
	height: 13px;
	color: #9b948a;
	pointer-events: none;
}


.show-more {
	appearance: none;
	background: transparent;
	border: 0;
	color: #1a1714;
	font: inherit;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 0;
	text-align: left;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	text-decoration-color: #F3EDE8;
	display: block;
}
.show-more:hover {
	text-decoration-color: #1a1714;
}


.zap-shop-filters__actions {
	position: sticky;
	bottom: 0;
	display: flex;
	gap: 8px;
	padding: 14px 0 4px;
	background: linear-gradient(180deg, transparent, #fafaf8 28%);
	z-index: 10;
}
.zap-shop-filters__submit {
	flex: 1;
	appearance: none;
	border: 0;
	background: #1a1714;
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	padding: 12px;
	border-radius: 10px;
	cursor: pointer;
	line-height: 1;
	/* letter-spacing: .01em; */
}
.zap-shop-filters__submit:hover {
	background: #000;
}
.zap-shop-filters__reset {
	appearance: none;
	background: #fff;
	border: 1px solid #F3EDE8;
	color: #1a1714;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	padding: 12px 14px;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
}
.zap-shop-filters__reset:hover {
	background: #f5f1ea;
}


.zap-filters-trigger {
	display: none;
}
.zap-filters-trigger:hover, .zap-filters-trigger:focus{
	box-shadow: unset !important;
	color: #000;
}

.zap-filters-modal {
	display: none;
}

.zap-filters-modal button:hover, .zap-filters-modal button:focus,
.zap-filters-modal [data-zap-reset]:hover, .zap-filters-modal [data-zap-reset]:focus{
	box-shadow: unset !important;
	color: #000;
}
@media ( max-width: 991px ) {


	.zap-filters-sidebar-only {
		display: none;
	}


	.zap-filters-trigger {
		display: inline-flex;
		position: fixed;
		left: -25px;
		transform: rotate(-90deg);
		top: 300px;
		z-index: 9998;
		line-height: 1 !important;
		background: #4a6bd7;
		color: #fff;
		border: none;
		/* padding: 8px 14px 38px 8px; */
		padding: 8px 14px 12px 8px;
		border-radius: 0px 0px 8px 8px;
		box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
		cursor: pointer;
		align-items: center;
		column-gap: 8px;
		font-size: 16px;
		font-weight: 500;
		transition: transform 0.3s ease;
		height: 30px;

	}

	.zap-filters-trigger:has(.zap-filters-trigger__badge){
		left: -39px !important;
	}
	.zap-filters-trigger:hover {
		background: #f5f1ea; 
	}
	.zap-filters-trigger svg {
		width: 15px;
		height: 15px;
		flex-shrink: 0;
	}
	.zap-filters-trigger__badge {
		background: #000;
		/* background: #4A6BD7; */ 
		color: #fff;
		font-size: 10px;
		font-weight: 700;
		border-radius: 999px;
		min-width: 16px;
		height: 16px;
		padding: 0 4px;
		display: grid;
		place-items: center;
		line-height: 1;
	}

	.zap-filters-modal {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 99999;
		visibility: hidden;
		pointer-events: none;
	}
	.zap-filters-modal.is-open {
		visibility: visible;
		pointer-events: all;
	}

	.zap-filters-modal__overlay {
		position: absolute;
		inset: 0;
		background: rgba(26, 23, 20, 0.5);
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	.zap-filters-modal.is-open .zap-filters-modal__overlay {
		opacity: 1;
	}

	.zap-filters-modal__panel {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		max-height: 92vh;
		background: white;
		/* background: #fafaf8; */
		border-radius: 16px 16px 0 0;
		display: flex;
		flex-direction: column;
		transform: translateY(100%);
		transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
	}
	.zap-filters-modal.is-open .zap-filters-modal__panel {
		transform: translateY(0);
	}

	.zap-filters-modal__panel::before {
		content: '';
		display: block;
		width: 36px;
		height: 4px;
		border-radius: 999px;
		background: #F3EDE8;
		/* #d6cebf */
		margin: 10px auto 4px;
		flex-shrink: 0;
	}

	.zap-filters-modal__bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px 14px;
		border-bottom: 1px solid #F3EDE8;
		flex-shrink: 0;
	}
	.zap-filters-modal__bar-title {
		/* font-family: "Cormorant Garamond", serif;
		font-style: italic; */
		font-weight: 500;
		font-size: 22px;
		color: #1a1714;
		letter-spacing: -.01em;
	}
	.zap-filters-modal__close {
		appearance: none;
		background: #F3EDE8;
		border: 0;
		border-radius: 50%;
		color: #1a1714;
		cursor: pointer;
		display: grid;
		place-items: center;
		width: 32px;
		height: 32px;
		flex-shrink: 0;
		padding: 0;
		transition: background .15s ease;
	}
	.zap-filters-modal__close:hover {
		background: #F3EDE8;
	}
	.zap-filters-modal__close svg {
		width: 13px;
		height: 13px;
	}

	.zap-filters-modal__body {
		overflow-y: auto;
		flex: 1;
		padding: 0 20px;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.zap-filters-modal .zap-shop-filters__header {
		display: none;
	}

	.zap-filters-modal .zap-shop-filters__actions {
		position: sticky;
		bottom: 0;
		padding-bottom: 20px;
		background: linear-gradient(to bottom, transparent, #fafaf8 28%);
	}
}


.zap-no-results {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
}
.zap-no-results__reset {
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.active-filters-list [data-zap-reset] {
	/* font-family: inherit; */
	border: 0;
	/* background: none; */
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}


.page-nowosci .js-product-ordering{
	display: none !important;
}

.active-filters-list{
	/* display: flex; */
    /* flex-direction: row; */
    flex-wrap: nowrap;
    overflow-y: auto;
}

.filter-link-text{
	text-wrap: nowrap;
}

.remove-all-filters-link{
	order: -1;
}



.active-filters-list::-webkit-scrollbar {
  /* width: 2px;  */
  height: 8px;
}

.active-filters-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.active-filters-list::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 1px;
}