
.hoovik-category-sidebar,
.hoovik-category-sidebar * {
	box-sizing: border-box;
}

.hoovik-category-sidebar {
	width: 100%;
	font-family: inherit;
	color: #4b5563;
}

.hoovik-category-sidebar__heading {
	margin-bottom: 14px;
	color: #1f2937;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.hoovik-category-sidebar__root {
	display: block;
	margin-bottom: 8px;
	color: #2f6f3e;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none !important;
}

.hoovik-category-sidebar__root:hover,
.hoovik-category-sidebar__root.is-active {
	color: #245a32;
}

.hoovik-category-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hoovik-category-sidebar__list[data-depth="2"],
.hoovik-category-sidebar__list[data-depth="3"],
.hoovik-category-sidebar__list[data-depth="4"] {
	padding-left: 13px;
}

.hoovik-category-sidebar__item {
	margin: 0;
	padding: 0;
}

.hoovik-category-sidebar__row {
	display: flex;
	align-items: center;
	gap: 4px;
	min-height: 34px;
}

.hoovik-category-sidebar__link {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 6px 0;
	color: #667085;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	text-decoration: none !important;
	transition: color .15s ease;
}

.hoovik-category-sidebar__link:hover {
	color: #2f6f3e;
}

.hoovik-category-sidebar__item.is-in-path > .hoovik-category-sidebar__row > .hoovik-category-sidebar__link {
	color: #344054;
	font-weight: 600;
}

.hoovik-category-sidebar__item.is-active > .hoovik-category-sidebar__row > .hoovik-category-sidebar__link {
	color: #2f6f3e;
	font-weight: 800;
}

.hoovik-category-sidebar__toggle {
	appearance: none;
	flex: 0 0 18px;
	width: 18px;
	height: 24px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	position: relative;
	cursor: pointer;
}

.hoovik-category-sidebar__toggle:hover,
.hoovik-category-sidebar__toggle:focus {
	background: transparent;
	outline: none;
}

.hoovik-category-sidebar__toggle span {
	position: absolute;
	top: 8px;
	left: 5px;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid #98a2b3;
	border-bottom: 1.5px solid #98a2b3;
	transform: rotate(45deg);
	transition: transform .18s ease, top .18s ease, border-color .18s ease;
}

.hoovik-category-sidebar__toggle:hover span,
.hoovik-category-sidebar__toggle:focus span {
	border-color: #2f6f3e;
}

.hoovik-category-sidebar__toggle[aria-expanded="true"] span {
	top: 10px;
	transform: rotate(225deg);
	border-color: #2f6f3e;
}

.hoovik-category-sidebar__children {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows .22s ease, opacity .18s ease;
}

.hoovik-category-sidebar__children > .hoovik-category-sidebar__list {
	overflow: hidden;
}

.hoovik-category-sidebar__children.is-open {
	grid-template-rows: 1fr;
	opacity: 1;
}

@media (max-width: 767px) {
	.hoovik-category-sidebar__row {
		min-height: 38px;
	}

	.hoovik-category-sidebar__toggle {
		flex-basis: 20px;
		width: 20px;
		height: 28px;
	}

	.hoovik-category-sidebar__toggle span {
		top: 10px;
		left: 6px;
	}

	.hoovik-category-sidebar__toggle[aria-expanded="true"] span {
		top: 12px;
	}
}


.hoovik-category-sidebar__mobile-toggle {
	display: none;
}

.hoovik-category-sidebar__mobile-panel {
	display: block;
}

@media (max-width: 767px) {
	.hoovik-category-sidebar-wrap {
		width: 100%;
		margin-bottom: 18px;
	}

	.hoovik-category-sidebar__mobile-toggle {
		appearance: none;
		width: 100%;
		min-height: 46px;
		padding: 0 15px;
		border: 1px solid #e1e5e8;
		background: #fff;
		color: #1f2937;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		font: inherit;
		font-size: 14px;
		font-weight: 700;
		text-align: left;
		cursor: pointer;
	}

	.hoovik-category-sidebar__mobile-arrow {
		flex: 0 0 auto;
		width: 8px;
		height: 8px;
		border-right: 1.5px solid #6b7280;
		border-bottom: 1.5px solid #6b7280;
		transform: rotate(45deg);
		transition: transform .18s ease, border-color .18s ease;
	}

	.hoovik-category-sidebar__mobile-toggle[aria-expanded="true"] .hoovik-category-sidebar__mobile-arrow {
		transform: rotate(225deg);
		border-color: #2f6f3e;
	}

	.hoovik-category-sidebar__mobile-panel {
		display: grid;
		grid-template-rows: 0fr;
		opacity: 0;
		border: 1px solid transparent;
		border-top: 0;
		transition: grid-template-rows .22s ease, opacity .18s ease, border-color .18s ease;
	}

	.hoovik-category-sidebar__mobile-panel > .hoovik-category-sidebar {
		overflow: hidden;
	}

	.hoovik-category-sidebar__mobile-panel.is-open {
		grid-template-rows: 1fr;
		opacity: 1;
		border-color: #e1e5e8;
	}

	.hoovik-category-sidebar__mobile-panel.is-open > .hoovik-category-sidebar {
		padding: 14px 15px 16px;
	}

	.hoovik-category-sidebar__heading {
		display: none;
	}

	.hoovik-category-sidebar__root {
		margin-bottom: 7px;
	}

	.hoovik-category-sidebar__row {
		min-height: 40px;
	}
}
