/* --- 공통 CSS --- */
.layout-product_list.layout-con {
  height: 100vh;
}

.layout-product_list .header {
  visibility: visible;
}

.layout-product_list .shopping_cart {
  display: flex;
}

.layout-product_list .layout {
  grid-template-rows: 100px 1fr 0px;
}

.layout-product_list .footer {
  display: none;
}
.layout-product_list .main{
    padding:0 29px;
}
/* --- 메인 CSS --- */
.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;
  overflow: auto;
  max-height: calc(100vh - 20px - 120px);
}

.layout-product_list .item_img {
  width: 299px;
  height: 295px;
  border-radius: 10%;
}

.layout-product_list .item_title {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: 'Spoqa Han Sans Neo';
  font-style: normal;
  font-weight: 400;
  color: #c8c8c8;
}

.layout-product_list .item_title_first {
  font-weight: 400;
  font-size: 27px;
  line-height: 33px;
  color: #707070;
}

.layout-product_list .item_title_second {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

.layout-product_list .item_price {
  margin-top: 10px;
  font-family: 'Spoqa Han Sans Neo';
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 35px;
}
