.hiszteria-woo-filter {
  font-family: inherit;
  margin-bottom: 30px;
  width: 230px; /* Desktop fix */
  background-color: #FFF;
}

/* Mobilon legyen teljes szélesség */
@media (max-width: 768px) {
  .hiszteria-woo-filter {
    width: 100%;
  }
}

/* Accordion (kategória blokk) */
.accordion-toggle {
  background-color: #80a15a;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 0;
  width: 100%;
  display: block;
  text-transform: uppercase;
  box-sizing: border-box;
  border: none;
  margin-bottom: 8px;
  margin-top: 5px;
}

/* Accordion tartalomkeret */
.filter-accordion {
  margin-bottom: 16px;
}

/* Kategória lista */
.accordion-category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.cat-parent {
  background: #f7f7f7;
  padding: 7px 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  margin-top: -5px;
}

.cat-parent .cat-link {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  flex-grow: 1;
}

.cat-parent .arrow-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 2px solid #80a15a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 10px;
  box-sizing: border-box;
  color: #80a15a !important;
  transition: transform 0.3s;
}

.cat-parent.open .arrow-icon {
  transform: rotate(180deg);
}

.cat-parent .arrow-icon:hover {
  background-color: #80a15a;
  color: #fff !important;
}

/* Aktív kategóriák */
.cat-parent.current-cat,
.cat-parent.current-cat-parent {
  background-color: #80a15a;
  color: white;
}

.cat-parent.current-cat .cat-link,
.cat-parent.current-cat-parent .cat-link {
  color: white;
  font-weight: bold;
}

/* Alkategóriák */
.subcat-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0px 16px 0px 24px;
  border-left: 2px solid #80a15a;
  background: #FFF;
  margin-top: -7px;
  margin-left: 20px;
}

.cat-parent.open + .subcat-box {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  padding: 0px 16px 0px 24px;
}

.subcat-box .subcat-link {
  font-size: 15px;
  color: #444;
  text-decoration: none;
  padding: 6px 0;
  display: block;
  border-bottom: 1px solid #f0dbe2;
  font-weight: 700;
}

.subcat-box .subcat-link:last-child {
  border-bottom: none;
}

/* Aktív szűrők */
.hiszteria-active-filters {
  background: #ebffd4;
  padding: 12px 16px;
  /*border: 1px solid #80a15a;*/
  margin-bottom: 20px;
  font-size: 15px;
}

.hiszteria-active-filters .filter-tag {
  background: #80a15a;
  color: white;
  padding: 4px 8px;
 /* border-radius: 20px;*/
  margin: 0 6px 0 10px;
  display: inline-block;
}

.hiszteria-active-filters .filter-tag a.remove-filter {
  color: white;
  margin-left: 6px;
  text-decoration: none;
  font-weight: bold;
}

.hiszteria-active-filters .filter-tag a.remove-filter:hover {
  color: #eee;
}
