.wccf-filters {
	max-width: 340px;
	font-family: 'Montserrat', sans-serif;
	position: relative;
}
.wccf-filters.is-loading {
	opacity: .6;
	pointer-events: none;
}

/* Mobil dropdown trigger – asztali nézetben rejtve, a panel mindig látszik */
.wccf-mobile-trigger {
	display: none;
}
.wccf-filters-panel {
	display: block;
}

@media (max-width: 900px) {
	.wccf-filters {
		max-width: 100%;
	}
	.wccf-mobile-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		width: 100%;
		background: #111;
		color: #fff;
		border: none;
		border-radius: 14px;
		padding: 14px 18px;
		font-family: 'Montserrat', sans-serif;
		font-size: 15px;
		font-weight: 600;
		letter-spacing: .3px;
		cursor: pointer;
	}
	.wccf-mobile-arrow {
		display: inline-block;
		transition: transform .2s ease;
		font-size: 14px;
	}
	.wccf-filters.is-open .wccf-mobile-arrow {
		transform: rotate(180deg);
	}
	.wccf-filters-panel {
		display: none;
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		right: 0;
		z-index: 40;
		background: #fff;
		border-radius: 16px;
		box-shadow: 0 16px 40px rgba(0,0,0,0.16);
		padding: 20px;
		max-height: 70vh;
		overflow-y: auto;
		box-sizing: border-box;
	}
	.wccf-filters.is-open .wccf-filters-panel {
		display: block;
	}
	.wccf-clear-btn {
		width: 100%;
	}
}

.wccf-clear-btn {
	background: #111;
	color: #fff;
	border: none;
	border-radius: 24px;
	padding: 12px 28px;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	letter-spacing: .3px;
	cursor: pointer;
	margin-bottom: 32px;
}
.wccf-clear-btn:hover {
	background: #ff2fa3;
}

.wccf-section {
	margin-bottom: 32px;
}
.wccf-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 16px;
}

/* Checkbox listák (Kollekciók) */
.wccf-checkbox-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.wccf-checkbox-list li {
	margin-bottom: 14px;
}
.wccf-checkbox {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	letter-spacing: .3px;
}
.wccf-checkbox input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.wccf-box {
	width: 18px;
	height: 18px;
	border: 1.5px solid #999;
	border-radius: 3px;
	flex: none;
	position: relative;
	transition: background .15s ease, border-color .15s ease;
}
.wccf-checkbox input:checked + .wccf-box {
	background: #ff2fa3;
	border-color: #ff2fa3;
}
.wccf-checkbox input:checked + .wccf-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);
}
.wccf-label-text {
	color: #333;
	transition: color .15s ease;
}
.wccf-checkbox input:checked ~ .wccf-label-text {
	color: #ff2fa3;
	font-weight: 600;
}

/* Színek */
.wccf-color-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	padding: 0;
}
.wccf-color-swatch {
	position: relative;
	display: block;
	cursor: pointer;
}
.wccf-color-swatch input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.wccf-swatch-circle {
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid #e2e2e2;
	background-size: cover;
	background-position: center;
}
.wccf-color-swatch.is-selected .wccf-swatch-circle,
.wccf-color-swatch input:checked + .wccf-swatch-circle {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ff2fa3;
}

/* Kategóriák (kibontható fa) */
.wccf-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.wccf-cat-item {
	border-top: 1px solid #ececec;
}
.wccf-cat-item:first-child {
	border-top: none;
}
.wccf-cat-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
}
.wccf-cat-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	letter-spacing: .3px;
	color: #333;
}
.wccf-cat-label input {
	position: relative;
	top: 1px;
	accent-color: #ff2fa3;
}
.wccf-cat-checkbox:checked ~ .wccf-cat-text {
	color: #ff2fa3;
	font-weight: 600;
}
.wccf-toggle {
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1;
	color: #333;
	cursor: pointer;
	width: 24px;
	height: 24px;
}
.wccf-cat-children {
	padding: 0 0 6px 18px;
}
.wccf-cat-children .wccf-cat-row {
	padding: 8px 0;
}

.wccf-empty {
	color: #888;
	font-size: 14px;
}

/* A terméklista (djoti kártya-grid) stílusa az assets/css/wccf-products-grid.css fájlban van. */
