.child-categories {
    margin-left: 20px;
  }
  
.filters-options{
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-box [type="checkbox"]{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  min-width: 16px;  
}

/* For screens greater than 1024px */
@media screen and (min-width: 991.5px) {
     .products-shop-mobile{
          display: grid;
          grid-template-columns: 1fr 1fr 1fr;
          row-gap: 10px;
          column-gap: 20px;
    }
    
    #filters {
      display: flex;  /* show on desktop */
      float: none;  /* reset float */
      position: static;  /* reset position */
    }
    
    .show-filters{
      display: none;
    }
    
    #mobile-filters {
      display: none;  /* hide on desktop */
    }
}

/* For screens greater than 1024px */
@media screen and (max-width: 991.5px) {
.products-shop-mobile{
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 10px;
  column-gap: 20px;
}

  .show-filters{
    display: block;
  }
  #filters {
    display: none;  /* hide on desktop */
  }
  #mobile-filters {
    display: flex;  /* show on desktop */
    float: none;  /* reset float */
    position: static;  /* reset position */
  }

  .pagination{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .shop-p__tool-style{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap:0.25rem;
  }
}

@media (max-width: 480px) {
  .products-shop-mobile{
      grid-template-columns: 1fr 1fr;
  }
  
  .product-card{
    box-sizing: content-box;
    width: 100%;
  }
  
  .filters-options{
      flex-direction: row;
      flex-wrap: wrap;
  }
  
  .product-bs___container, .product-bs__category, .product-bs__name, .product-o__price{
    display: flex;
    flex-direction: column;
    box-sizing: content-box;    
  }
}

.not-found-prod{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.search-result-term{
    margin-bottom: 20px;
}

.search-result-term__default{
    font-weight: bold;    
}