/*
* author : minjeong
* purpose : feelframe.co.kr index groupbuying section
* date: 2025.08.22
*/
.groupbuying {
  width: 100%;
}

.mobile_br {
  display: none;
}

.groupbuying .section_top {
  width: 100%;
  height: 60px;
  background: linear-gradient(27.25turn, #fcecca, #f8d6dc);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.groupbuying .section_top .tit {
  color: #373737;
  font-family: 'Neo_SemiBold';
  padding: 0 15px;
}
.groupbuying .section_top .tit .emp {
  color: #9747FF;
  font-family: 'Neo_Bold';
}



.groupbuying .section_content {
  width: 1340px;
  display: flex;
  margin: 60px auto 100px;
}

.groupbuying .section_content .btn {
  display: block;
  width: 260px;
  padding: 15px 10px;
  border: 1px solid #373737;
  text-align: center;
  cursor: pointer;
  margin-top: 30px;
}
.groupbuying .section_content .btn._bg {
  background-color: #373737;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}
.groupbuying .section_content .btn._bg i {
  color: #fff;
}
.groupbuying .section_content .btn_circle {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background-color: #373737;
  color: #fff;
  font-family: 'Neo_SemiBold';
  line-height: 22px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
}


/* 타이틀 영역 */
.groupbuying .section_content .today_group {
  width: 30%;
}
.groupbuying .section_content .today_group .title {
  font-size: 25px;
  font-family: 'Neo_Bold';
  letter-spacing: 1px;
  margin: 20px 0 30px;
}
.groupbuying .section_content .today_group .title_mo {
  display: none;
}
.groupbuying .section_content .today_group .timer {
  font-size: 32px;
  font-family: 'Neo_Heavy';
  color: #9747FF;
  margin-bottom: 40px;
}
.groupbuying .section_content .today_group .timer span {
  padding: 10px 15px;
  border-radius: 10px;
  background-color: #f8f3fd;
  color: #9747FF;
  font-family: 'Neo_Heavy';
}
.groupbuying .section_content .today_group .info_mobile {
  display: block;
  font-size: 16px;
  line-height: 28px;
}
.groupbuying .section_content .today_group .info_mobile .emp {
  font-size: 18px;
  font-family: 'Neo_SemiBold';
}
.groupbuying .section_content .today_group .info {
  font-size: 18px;
}
.groupbuying .section_content .today_group .info>div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.groupbuying .section_content .today_group .info .left {
  width: 23%;
  font-family: 'Neo_SemiBold';
}
.groupbuying .section_content .today_group .info .sale .right {
  font-family: 'Neo_Bold';
  color: #9747FF;
}
.groupbuying .section_content .today_group .info .right {
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* 상품별 할인가 리스트 */
.groupbuying .section_content .product_list {
  width: 70%;
  padding-left: 3%;
}
.groupbuying .section_content .product_list .notice {
  font-size: 18px;
  font-family: 'Neo_SemiBold';
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}
.groupbuying .section_content .product_list .notice .emp {
  font-family: 'Neo_Bold';
  color: #9747FF;
}
.groupbuying .section_content .product_list .notice .etc {
  font-size: 12px;
  color: #777;
}
.groupbuying .section_content .groupbuying_product._mo {
  display :none;
}
.groupbuying .section_content .box_list {
  width: 100%;
  display: flex;
  gap: 20px;
}
.groupbuying .section_content .box_list .box {
  width: calc((100% - 40px) / 3);
}
.groupbuying .section_content .box_list .box .img {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}
.groupbuying .section_content .box_list .box .img img {
  width: 100%;
}
.groupbuying .section_content .box_list .box .txt {
  width: 100%;
  padding: 20px 10px 0;
}
.groupbuying .section_content .box_list .box .txt .name {
  width: 100%;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 20px;
}
.groupbuying .section_content .box_list .box .txt .price {
  width: 100%;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.groupbuying .section_content .box_list .box .txt .price .badge_wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.groupbuying .section_content .box_list .box .txt .price .badge {
  padding: 5px;
  border-radius: 5px;
  font-size: 11px;
  background-color: #F3E9FF;
  color: #9747FF;
  margin-bottom: 7px;
}
.groupbuying .section_content .box_list .box .txt .price .badge.bg_none {
  background-color: transparent;
  color: #e253ba;
}
.groupbuying .section_content .box_list .box .txt .price .sale_info {
  width: 100%;
  display: flex;
}
.groupbuying .section_content .box_list .box .txt .price .sale_info .sale {
  font-size: 22px;
  font-family: 'Neo_Bold';
  color: #9747FF;
  margin-right: 5px;
}
.groupbuying .section_content .box_list .box .txt .price .sale_info .sale_price {
  font-size: 18px;
  font-family: 'Neo_Bold';
}
.groupbuying .section_content .box_list .box .txt .price .sale_info .original_price {
  font-size: 16px;
  color: #9e9e9e;
  text-decoration-line: line-through;
  margin-left: 10px;
}


/* 공동구매 그룹 정보 - 주석처리중 */
.groupbuying .section_content .table_list {
  width: 60%;
  position: relative;
}
.groupbuying .section_content .table_list .table_title {
  font-family: 'Neo_SemiBold';
  font-size: 22px;
  text-align: center;
  margin: 10px 0 30px 5%;
}
.groupbuying .section_content .table_list ul {
  width: 100%;
  padding-left: 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.groupbuying .section_content .table_list ul li {
  width: 30%;
  padding: 30px 20px;
  border-radius: 25px;
  border-top-left-radius: 0;
  background-color: #f9f9f9;
}
.groupbuying .section_content .table_list ul li>div {
  font-size: 15px;
  text-align: center;
}
.groupbuying .section_content .table_list ul li .timer {
  padding: 10px;
}
.groupbuying .section_content .table_list ul li .group_name {
  font-family: 'Neo_SemiBold';
  margin: 10px 0 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ddd;
}
.groupbuying .section_content .table_list ul li .group_info {
  line-height: 30px;
}
.groupbuying .section_content .table_list ul li .group_p {
  font-family: 'Neo_Bold';
  color: #e59c4e;
}




@media screen and (max-width:767px){
  .mobile_br {
    display: block;
  }
  .groupbuying .section_top {
    font-size: 14px;
  }
  .groupbuying .section_content {
    display: block;
    width: 100%;
    margin: 30px auto 130px;
  }
  .groupbuying .section_content .btn {
    width: 300px;
    padding: 13px 10px;
    margin: 0 auto;
  }
  .groupbuying .section_content .btn._bg {
    background-color: #373737;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
  }

  .groupbuying .section_top .tit {
    line-height: 20px;
  }
  .groupbuying .section_content .today_group {
    width: 100%;
    text-align: center;
  }
  .groupbuying .section_content .today_group .title {
    display: none;
  }
  .groupbuying .section_content .today_group .title_mo {
    display: block;
    font-size: 20px;
    font-family: 'Neo_Bold';
    line-height: 30px;
    margin: 20px 0 30px;
  }
  .groupbuying .section_content .today_group .title_mo .emp {
    font-family: 'Neo_Heavy';
    color: #e253ba;
  }
  .groupbuying .section_content .today_group .timer {
    margin-bottom: 28px;
  }
  .groupbuying .section_content .today_group .info_mobile {
    font-size: 15px;
    line-height: 22px;
    padding: 0 20px 15px;
  }
  .groupbuying .section_content .today_group .info {
    display: none;
  }
  .groupbuying .section_content .groupbuying_product {
    display :none;
  }
  .groupbuying .section_content .groupbuying_product._mo {
    display :block;
  }
  .groupbuying .section_content .product_list {
    width: 100%;
    padding: 0 20px;
    position: relative;
    margin-top: 20px;
  }
  .groupbuying .section_content .product_list .notice {
    width: 90%;
    font-size: 15px;
    line-height: 20px;
    position: absolute;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
  }
  .groupbuying .section_content .box_list .box {
    width: 300px;
    margin: 0 auto;
  }
  .groupbuying .section_content .box_list .box .img {
    height: 300px;
  }
  .groupbuying .section_content .box_list .box .txt .name {
    margin-bottom: 10px
  }
}
