body.page-id-4903899 header,
body.page-id-4903899 footer {
  display: none;
}

body.page-id-4903899 .main-container {
  margin-top: 0;
}

body.page-id-4915170 header,
body.page-id-4915170 footer {
  display: none;
}

body.page-id-4915170 .main-container {
  margin-top: 0;
}



#shopRecommend {
  min-height: 100vh;
}

/* 공통 */
#shopRecommend {
  font-family: Pretendard;
  /*letter-spacing: -0.02em;*/
}

#shopRecommend *,
#shopRecommend *::before,
#shopRecommend *::after {
  font-family: Pretendard;
  /*letter-spacing: -0.02em;*/
}

#shopRecommend .w-1200 {
  width: 100%;
  max-width: 1136px;
  margin: 0 auto;
}



#shopRecommend .container {
  margin-top: 72px;
  padding: 40px 0 100px;
}

#shopRecommend .product-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 48px 19px;
}

#shopRecommend .product-item {
  display: block;
}

#shopRecommend .product-item .img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #E9E9E9;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#shopRecommend .product-item .img .badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
}

#shopRecommend .product-item .img .badge.todaySale {
  width: 34px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url('../images/renewal/home/badge-today-sale.svg') no-repeat center center / contain;
}

#shopRecommend .product-item .img img {
  display: block;
}

#shopRecommend .product-item .category {
  color: rgba(136, 136, 136, 0.9);
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  margin-bottom: 8px;
}

#shopRecommend .product-item .product-name {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  margin-bottom: 8px;
}

#shopRecommend .product-item .regular-price-block {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 6px;
}

#shopRecommend .product-item .regular-price-block .text {
  color: #F9463D;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}

#shopRecommend .product-item .regular-price {
  color: #999;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
  text-decoration-line: line-through;
}

#shopRecommend .product-item .price-block {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}

#shopRecommend .product-item .price-block .percent {
  color: #F9463D;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

#shopRecommend .product-item .price {
  color: #000;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

#shopRecommend .product-item .etc-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

#shopRecommend .product-item .brand-block {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

#shopRecommend .product-item .brand-block::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #e9e9e9;
}

#shopRecommend .product-item .brand-img {
  flex-shrink: 0;
  width: 14px;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #eee;
}

#shopRecommend .product-item .brand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#shopRecommend .product-item .brand-name {
  color: #444;
  font-family: "Noto Sans KR";
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
}

#shopRecommend .product-item .ranking-block {
  display: flex;
  align-items: center;
}

#shopRecommend .product-item .star {
  width: 12px;
  margin-right: 4px;
}

#shopRecommend .product-item .ranking {
  color: #444;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  margin-right: 2px;
}

#shopRecommend .product-item .review-count {
  color: #888;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}





@media screen and (max-width: 1176px) {
  #shopRecommend .w-1200 {
    max-width: 100%;
    padding: 0 20px;
  }
}


@media screen and (max-width: 1000px) {
  #shopRecommend .container {
    padding-top: 30px;
  }

  #shopRecommend .product-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


@media screen and (max-width: 900px) {
  #shopRecommend .product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 15px;
  }
}


@media screen and (max-width: 768px) {
  #shopRecommend .container {
    margin-top: 52px;
    padding-top: 20px;
  }

  #shopRecommend .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 11px;
  }

  #shopRecommend .product-item .img {
    padding: 13px;
    margin-bottom: 12px;
  }

  #shopRecommend .product-item .etc-block {
    gap: 15px;
  }

  #shopRecommend .product-item .brand-block::after {
    right: -7px;
  }

  #shopRecommend .product-item .brand-name {
    max-width: 4.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #shopRecommend .product-item .img .badge {
    top: 10px;
    left: 10px;
  }

  #shopRecommend .product-item .img .badge.todaySale {
    width: 30px;
  }
}