div.main-container {
  position: relative;
  padding: 80px 0px 100px;
  max-width: 680px;
  width: 100%;
  margin: 0px auto;
  height: unset;
}

div.main-container-inner {
  max-width: unset;
  width: unset;
  margin: unset;
  height: unset;
  padding-bottom: unset;
}

.review-details {
  margin-bottom: 20px;
}

.review-point {
  width: 100%;
  height: 70px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  background: rgba(233, 229, 250, 0.3);
  border-radius: 25px 25px 25px 0px;
  letter-spacing: -0.02em;
  color: rgb(124, 90, 255);
  padding: 24px 26px 25px;
}

.review-point img {
  margin-right: 12px;
  vertical-align: middle;
}

.review-point .mo-review-noti {
  display: none;
}

.review-noti p {
  margin: 0;
}

.review-link {
  width: 100%;
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgb(233, 233, 233);
  box-sizing: border-box;
  color: rgb(93 93 93);
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.26px;
  padding: 10px 20px;
  margin-top: 20px;
  text-align: center;
}

.review-user {
  margin-bottom: 24px;
  position: relative;
}

.review-user small {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 22px;
}

.review-user small .flex {
  display: flex;
  gap: 10px;
  place-items: center;
}

.review-user p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -0.02em;
  margin: 0;
}

.review-user span {
  color: rgb(102, 102, 102);
}

.review-user span:first-child::after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 12px;
  background-color: rgb(224, 224, 224);
  margin: 0px 12px;
}

.review-rating {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 18px;
  background-size: 18px 18px;
  background-image: url(/images/star_gray.svg);
  background-position-x: 0px;
  overflow: hidden;
  vertical-align: middle;
}

.review-rating::after {
  position: absolute;
  display: block;
  content: "";
  width: calc(100%);
  height: 100%;
  background-image: url(/images/star_gold.svg);
  background-size: 18px 18px;
  background-position-x: 0px;
}

.review-user .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -0.02em;
  color: rgb(153, 153, 153);
  margin: 0;
}

.review-image-box {
  width: 100%;
  height: 500px;
}

.box-wrapper {
  display: inline-block;
  width: 100%;
  border-radius: 10px;
}

.single-slick-wrap {
  position: relative;
}

.single-slick-wrap .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.single-slick-wrap .slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.single-slick-wrap .slick-track {
  height: 100%;
  /* width는 Slick이 슬라이드 개수에 따라 인라인으로 설정하므로 덮어쓰지 않음 (가로 정렬 유지) */
}

.single-slick-wrap .slick-slide {
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
}

.box-img {
  display: inline-block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px;
  width: 100%;
  height: 0px;
  padding-bottom: 71.8%;
  position: relative;
  overflow: hidden;
}

.box-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.single-slick-wrap .slick-next {
  position: absolute;
  z-index: 1;
  transition: 0.3s;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 86px;
  height: 40px;
  border: none;
  font-size: 0px;
  color: rgb(255, 255, 255) !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.single-slick-wrap .slick-prev {
  position: absolute;
  transition: 0.3s;
  z-index: 1;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  font-size: 0px;
  color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.single-slick-wrap .slick-prev::after {
  background-image: url(/images/review_left.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  position: absolute;
  content: "";
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}

.single-slick-wrap .slick-next::after {
  background-image: url(/images/review_right.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  position: absolute;
  content: "가나다라";
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}

.review-content {
  margin-top: 20px;
  background: rgb(246, 247, 248);
  border-radius: 10px;
  padding: 30px;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: -0.02em;
}

.review-details .review-pro-wrap {
  border: 1px solid rgb(233, 233, 233);
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 20px 40px 20px 47px;
  cursor: pointer;
  transition: 0.3s;
}

.review-details .review-pro-wrap .pro-info {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 33px;
}

.review-details .review-pro-wrap .review-pro {
  width: 110px;
  height: 110px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.review-details .review-pro-wrap .pro-tit {
  color: rgb(102, 102, 102);
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.28px;
}

.button-group {
  margin-top: 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -0.02em;
}

.button {
  display: block;
  width: 100%;
  height: 54px;
  line-height: 54px;
  border-radius: 5px;
  background-color: rgb(124, 90, 255);
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: bold;
  transition: 0.5s;
  text-align: center;
  text-decoration: none;
}

.button-group a {
  width: 166px;
  height: 52px;
  line-height: 50px;
  margin: 0px auto;
  transition: 0.4s;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(233, 233, 233);
  border-radius: 120px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
}

.button-group img {
  margin-right: 10px;
  position: relative;
  top: -2px;
  vertical-align: middle;
}

.button-group a:hover {
  opacity: 0.6;
}

.slick-prev:before,
.slick-next:before {
  content: "" !important;
  display: none !important;
}

.pagenum-sc {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-60%);
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  pointer-events: none;
}

.pagenum-sc span {
  color: rgba(255, 255, 255, 0.7);
}

.pro-detail {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 40px;
}

.pro-detail .wc-block-grid__product-image {
  width: 30%;
  margin: unset;
}

.pro-detail img {
  display: block;
  min-width: 100px;
  max-width: 170px !important;
  height: 100%;
  transition: opacity 0.4s;
}

.product-detail .detail-text {
  width: 60%;
}

.product-type a {
  color: rgb(102, 102, 102);
  font-family: "Noto Sans KR";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.28px;
  margin-bottom: 2px;
}

.product-name {
  max-width: 290px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgb(0, 0, 0);
  font-family: "Noto Sans KR";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.36px;
  margin-bottom: 8px;
}

.product-detail .detail-text .pro-desc {
  margin-top: 10px;
}

.product-detail .detail-text .pro-desc p {
  font-family: "Noto Sans KR";
  font-size: 14px;
  font-style: normal;
  line-height: 160%;
  letter-spacing: -0.28px;
  color: rgb(102, 102, 102);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 400 !important;
}

@media (max-width: 770px) {
  div.main-container {
    overflow: hidden;
    padding: 80px 0px 0px;
  }

  div.main-container-inner {
    padding: 0;
    /*margin: -20px 20px 0px !important;*/
    margin: 0;
  }

  .review-point {
    padding: 15px 21px 17px;
    font-size: 13px;
    border-radius: 13px 13px 13px 0px;
    height: unset;
  }

  .review-noti {
    display: none;
  }

  .review-point .mo-review-noti {
    display: flex;
    align-items: flex-start;
  }

  .review-point img {
    margin-right: 10px;
    position: relative;
    top: 3px;
  }

  .review-user small {
    margin-top: 20px;
  }

  .review-user p {
    font-size: 13px;
  }

  .review-rating {
    background-size: 14px 14px;
    width: 70px;
    height: 14px;
    background-position-x: 0px;
  }

  .review-rating::after {
    background-size: 14px 14px;
    background-position-x: 0px;
  }

  .review-user .date {
    font-size: 12px;
  }

  .review-user > p {
    display: none;
  }

  .review-image-box {
    height: unset;
  }

  .review-content {
    margin-top: 10px;
    padding: 20px;
    font-size: 14px;
    border-radius: 6px;
  }

  .review-details .review-pro-wrap {
    border-radius: 6px;
    margin-top: 10px;
    padding: 24px 20px 25px 22px;
  }

  .review-details .review-pro-wrap .pro-info {
    gap: 22px;
  }

  .review-details .review-pro-wrap .pro-tit {
    font-size: 12px;
  }

  .button-group {
    margin-top: 0px;
    font-weight: 500;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: -0.02em;
    margin-bottom: 50px;
  }

  .button-group a {
    width: 114px;
    height: 42px;
    line-height: 40px;
    margin: 0px auto;
    transition: 0.4s;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(233, 233, 233);
    border-radius: 120px;
    color: rgb(0, 0, 0);
    font-size: 12px;
  }

  .button-group img {
    width: 13px;
    margin-right: 8px;
    position: relative;
    top: -2px;
  }

  .product-name {
    white-space: normal;
  }

  .pro-detail img {
    max-width: 100px !important;
  }
}