/* ============================================================
   WC Product Categories Widget — kujundus
   ============================================================ */

.wc-pcw-widget .product-categories {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc-pcw-widget .product-categories li {
	margin: 0;
	padding: 0;
}

/* Iga üksuse rida: link + toggle nupp kõrvuti */
.wc-pcw-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
}

.wc-pcw-item-header a {
	flex: 1;
	padding: 5px 0;
	text-decoration: none;
}

.wc-pcw-item-header .count {
	color: #888;
	font-size: 0.85em;
	margin-right: 4px;
}

/* Toggle nupp */
.wc-pcw-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent !important;
	border: none;
	cursor: pointer;
	color: inherit;
	line-height: 1;
}

/* Nool pöörab lahti olekus */
.wc-pcw-toggle svg {
	transition: transform 0.2s ease;
	pointer-events: none;
}

.wc-pcw-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

/* Alam-kategooriate nimekiri */
.wc-pcw-widget ul.children {
	list-style: none;
	margin: 0;
	padding: 0 0 0 16px;
	overflow: hidden;
	display: none;
}

.wc-pcw-widget ul.children.is-open {
	display: block;
}

/* Aktiivne kategooria */
.wc-pcw-widget li.current-cat > .wc-pcw-item-header > a,
.wc-pcw-widget li.current-cat > .wc-pcw-item-header > a:hover {
	font-weight: 700;
}
