/* --- 공통 CSS --- */
.layout-product_list.layout-con {
  height: 100vh;
}

.layout-product_list .header {
  visibility: visible;
}

.layout-product_list .footer {
  visibility: visible;
}

/* --- 메인 CSS --- */
.layout-product_list .product_list {
  overflow: auto;
  max-height: calc(100vh - 190px);
}

.layout-product_list .product_list_main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 15px;
  overflow: hidden;
  z-index: -10;
}

.layout-product_list .item_img {
  border-radius: 10%;
}

.layout-product_list .item_title {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: 'Spoqa Han Sans Neo';
  font-style: normal;
}

.layout-product_list .item_title_first {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #707070;
}

.layout-product_list .item_title_second {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
}

.layout-product_list .item_price {
  margin-top: 10px;
  font-family: 'Spoqa Han Sans Neo';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
