div.item_list_box
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  border: 1px none red;
}

a.item_list_panel
{
  flex: 1 1 350px;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 250px;
  padding: .7rem;
  text-decoration: none;
  border: 1px solid gray;
  border-radius: 8px;
  background-color: #F7F6F0;
}

a.item_list_panel:link { color: black; }
a.item_list_panel:visited { color: black; }
a.item_list_panel:hover { color: black; }
a.item_list_panel:active { color: black; }

a.item_list_panel > div.img_box
{
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: .5rem;
}

a.item_list_panel > div.img_box img
{
  display: block;
  max-height: 160px;
  border-radius: 8px;
}

a.item_list_panel > div.item_data_panel
{
  display: flex;
  height: 70px;
  flex-direction: column;
  justify-content: space-between;
}

a.item_list_panel > div.item_data_panel > div.item_caption
{
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: .5rem;
}

a.item_list_panel > div.item_data_panel > div.item_caption > div
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

a.item_list_panel > div.item_data_panel > div.item_caption > div:nth-child(2)
{
  font-size: .9rem;
}


a.item_list_panel > div.item_data_panel > div.item_data
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

a.item_list_panel > div.item_data_panel > div.item_data > div.item_price
{
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  height: 100%;
  margin-bottom: 4px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  border: 1px none blue;
}

/* cataigory list */
a.item_list_panel > div.item_data_panel > div.item_data > div.ctgry_descr
{
  flex: 1 1 75%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
