.nv-sidebar-wrap.shop-sidebar,
.nv-sidebar-toggle,
.nv-woo-filters {
	display: none !important;
}

.sharokina-filter-topbar {
	position: fixed;
	top: var(--top-margin-big);
	left: 0;
	z-index: 9990;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	width: 100%;
	padding: 10px 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

body.admin-bar .sharokina-filter-topbar {
	top: calc(var(--top-margin-big, 105px) + 46px);
}
@media screen and (min-width:782px) {
body.admin-bar .sharokina-filter-topbar {
	top: calc(var(--top-margin-big, 105px) + 32px);
}
}
@media screen and (min-width:960px) {
body.admin-bar .sharokina-filter-topbar {
	top: calc(var(--top-margin-regular, 70px) + 32px);
}
.sharokina-filter-topbar {
	position: fixed;
	top: var(--top-margin-regular);
}
}
.sharokina-filter-toggle {
	padding: 0;
	border: 0;
	background: none;
	color: var(--color);
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	font-size: var(--mini-fontsize);
}

.sharokina-filter-toggle::before {
	font-family: "icomoon";
	content: "\e210";
	font-size: 10px;
	padding-right: 10px;
}

.sharokina-active-filters,
.sharokina-filter-topbar-inner {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	font-size: var(--mini-fontsize);
}

.sharokina-active-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	border: 1px solid currentColor;
	text-decoration: none;
	line-height: 1;
}

.sharokina-filter-drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	display: block !important;
	width: min(300px, 90vw) !important;
	height: 100vh;
	padding: 20px;
	box-sizing: border-box;
	background: #fff;
	overflow: auto;
	transform: translate3d(-100%, 0, 0);
	transition: transform 0.25s ease;
	will-change: transform;
	font-size: var(--small-fontsize);
}

body.sharokina-filter-open .sharokina-filter-drawer {
	transform: translate3d(0, 0, 0);
}

.sharokina-filter-overlay {
	position: fixed;
	inset: 0;
	z-index: 99998;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

body.sharokina-filter-open .sharokina-filter-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.25s ease, visibility 0s linear 0s;
}

body.sharokina-filter-open {
	overflow: hidden;
}

.sharokina-filter-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0 0 20px auto;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	cursor: pointer;
}
.sharokina-filter-toggle:hover,
.sharokina-filter-close:hover {
	color: inherit;
	background: none;
}

.sharokina-filter-close::before {
	font-family: "icomoon";
	content: "\e010";
	font-size: 15px;
	line-height: 1;
}

.sharokina-filter-drawer button,
.sharokina-filter-drawer a {
	font-size: inherit;
}

.sharokina-filter-drawer .widget {
margin-bottom:0;
padding:20px 0;
border-bottom: 1px solid #ccc;
}

.sharokina-filter-drawer .widget:last-child {
border-bottom:none;
}

.sharokina-filter-drawer .widget-title {
font-weight:600;
color:#000;
}

.sharokina-filter-drawer .widget_product_categories .widget-title,
.sharokina-filter-drawer .count {
	display: none !important;
}

/* Farbe / Attributfilter */
.sharokina-filter-drawer .woocommerce-widget-layered-nav-list__item > a,
.sharokina-filter-drawer a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 0;
	text-decoration: none;
}

.sharokina-filter-drawer .woocommerce-widget-layered-nav-list__item > a::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border: 1px solid currentColor;
	box-sizing: border-box;
	flex: 0 0 8px;
}

.sharokina-filter-drawer .woocommerce-widget-layered-nav-list__item > a:hover::before,
.sharokina-filter-drawer .woocommerce-widget-layered-nav-list__item--chosen > a::before,
.sharokina-filter-drawer .woocommerce-widget-layered-nav-list__item.chosen > a::before,
.sharokina-filter-drawer .chosen > a::before {
	background: currentColor;
}

/* Aktive Texte */
.sharokina-filter-drawer .cat-item.current-cat > a,
.sharokina-filter-drawer .cat-item.current-cat-parent > a,
.sharokina-filter-drawer .cat-item.current-cat-ancestor > a,
.sharokina-filter-drawer .cat-parent.sharokina-cat-has-current > a,
.sharokina-filter-drawer .woocommerce-widget-layered-nav-list__item--chosen > a,
.sharokina-filter-drawer .woocommerce-widget-layered-nav-list__item.chosen > a,
.sharokina-filter-drawer .chosen > a {
	font-weight: 600;
}

/* Produktkategorie-Parents */
.sharokina-filter-drawer .cat-parent {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 12px;
}

.sharokina-filter-drawer .cat-parent > a {
	min-width: 0;
}

.sharokina-filter-drawer .cat-parent > .children {
	grid-column: 1 / -1;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.25s ease, opacity 0.2s ease;
}

.sharokina-filter-drawer .cat-parent.sharokina-cat-open > .children {
	max-height: 800px;
	opacity: 1;
	padding-left: 20px;
}

.sharokina-filter-drawer .sharokina-cat-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: 1;
	cursor: pointer;
}
