/* Kollekció szűrő lista az oldalsávban: pipálható sorok termékszámmal. */
.festede-ksz__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.festede-ksz__item {
	margin: 0;
}

.festede-ksz__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 6px;
	border-radius: 6px;
	color: #333;
	font-size: 15px;
	line-height: 1.3;
	text-decoration: none;
}

.festede-ksz__link:hover {
	background: #f3f3f3;
	color: #111;
}

.festede-ksz__box {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border: 1px solid #c7c7c7;
	border-radius: 4px;
	background: #fff;
	position: relative;
}

.is-current .festede-ksz__box {
	border-color: var(--wd-primary-color, #6e3d88);
	background: var(--wd-primary-color, #6e3d88);
}

.is-current .festede-ksz__box::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.is-current .festede-ksz__name {
	font-weight: 600;
}

.festede-ksz__name {
	flex: 1 1 auto;
	min-width: 0;
}

.festede-ksz__count {
	flex: 0 0 auto;
	color: #888;
	font-size: 13px;
}

/* A .festede-ksz előtag a WoodMart általános gombstílusa miatt kell. */
.festede-ksz .festede-ksz__more {
	display: inline-block;
	margin: 8px 0 0 6px;
	padding: 0;
	border: 0;
	background: none;
	color: #333;
	font-size: 15px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.festede-ksz .festede-ksz__more:hover {
	color: var(--wd-primary-color, #6e3d88);
}

/* Mobilon és tableten a szűrő panel alulról csúszik fel, alulra rögzítve, teljes
   szélességben (bottom sheet). A téma .wd-side-hidden.wd-left szabálya balról
   csúsztatná; a három osztályos szelektor erősebb nála. */
@media (max-width: 1024px) {
	.sidebar-container.wd-side-hidden.wd-left {
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-height: 85vh;
		padding-top: 12px;
		margin-bottom: 0;
		border-radius: 20px 20px 0 0;
		transform: translate3d(0, 100%, 0);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.sidebar-container.wd-side-hidden.wd-left.wd-opened {
		transform: none;
	}

	/* A panel tetején lévő Elementor blokk (Termékszűrő cím és leírás) mobilon nem kell. */
	.sidebar-container .widget_elementor-library {
		display: none;
	}
}
