/* Kategori-meny (uten tellere) */
.ajax-cat-menu {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px 0;
}
.ajax-cat-menu .cat-item { margin: 2px 0; }
.ajax-cat-menu .cat-line {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 8px;
  border: 1px solid #ddd;
  background: #fafafa;
}
.ajax-cat-menu .cat-item.open > .cat-line,
.ajax-cat-menu .cat-line:hover { background: #f0f0f0; }

.ajax-cat-menu .ajax-subcats {
  margin-left: 16px;
  padding-left: 10px;
  border-left: 2px solid #e5e5e5;
  display: none;
}

/* Piler for hovedkategorier */
.ajax-cat-menu .has-children > .cat-line .cat-name::after {
  content: "▸";
  float: right;
  color: #666;
  margin-left: auto;
}
.ajax-cat-menu .has-children.open > .cat-line .cat-name::after {
  content: "▾";
}

/* Sjekkboks med X */
.cat-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  position: relative;
  display: inline-block;
}
.cat-checkbox:checked::after {
  content: "X";
  position: absolute;
  left: 2px;
  top: -2px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
}

/* Brand-meny */
#ajax-brand-menu { margin: 16px 0; }
.ajax-brand-menu { list-style: none; padding-left: 0; margin: 0; }
.ajax-brand-menu .brand-item { margin: 2px 0; }
.ajax-brand-menu .brand-item label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; padding: 6px 8px;
  border: 1px solid #ddd; background: #fafafa;
}
.ajax-brand-menu .brand-item label:hover { background: #f0f0f0; }
.brand-count { margin-left: 6px; color: #666; font-weight: 600; }

/* Pris-slider */
#ajax-price-slider {
  margin-top: 16px; padding: 8px;
  border: 1px solid #ddd; background: #fafafa;
}
#price-range { margin: 12px 0; }
.price-readout { font-weight: 600; }

/* Show more */
.ajaxcat-loadmore-wrap {
  margin: 24px 0;
  display: flex;
  justify-content: center;  /* midtstilt */
  width: 100%;
}
#ajaxcat-loadmore.button {
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Skjul standard Woo/Flatsome paginering når vårt filter styrer */
.ajaxcat-hijacked .woocommerce-pagination {
  display: none !important;
}
