@charset "UTF-8";
/* ============================================
   상품 상세 리뷰 - 친근한 톤 v7
   별점 정확히 표현 + 사진 잘 보이게 + 카드감 살리기
   ============================================ */

/* ---------- 별점: 회색 배경 + 점수만큼 노란 별 ---------- */
.com_shop_detail .com_shop_reply .shop_reply__head .star {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
}

/* 원본 img 1개는 숨김 */
.com_shop_detail .com_shop_reply .shop_reply__head .star .icon,
.com_shop_detail .com_shop_reply .shop_reply__head .star img {
  display: none !important;
}

/* 별점 컨테이너 (노란 별 5개) */
.com_shop_detail .com_shop_reply .shop_reply__head .star::before {
  content: "★★★★★";
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffb800;
  line-height: 1;
  font-family: Arial, sans-serif;
}

/* ---------- 카드 영역에 따뜻한 느낌 ---------- */
.com_shop_detail .com_shop_reply .shop_reply__item {
  padding: 20px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  border-bottom: 1px solid #ececec; /* 기존 border-bottom 덮어쓰기 */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.com_shop_detail .com_shop_reply .shop_reply__item:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media screen and (min-width: 1023.9px) {
  .com_shop_detail .com_shop_reply .shop_reply__item {
    padding: 24px 28px;
    margin-bottom: 14px;
  }
}

/* ---------- 닉네임 - 굵직하게 ---------- */
.com_shop_detail .com_shop_reply .shop_reply__head .name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

@media screen and (min-width: 1023.9px) {
  .com_shop_detail .com_shop_reply .shop_reply__head .name {
    font-size: 15px;
  }
}

/* ---------- 날짜 - 회색 ---------- */
.com_shop_detail .com_shop_reply .shop_reply__head .date {
  font-size: 12px;
  color: #a0a0a0;
  font-weight: 400;
  margin-left: 8px;
}

/* ---------- 신고 버튼 - 흐릿하게 ---------- */
.com_shop_detail .com_shop_reply .shop_reply__btn_report {
  font-size: 11px;
  color: #c0c0c0;
  background: transparent;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  transition: color 0.15s ease;
  margin-left: auto;
}

.com_shop_detail .com_shop_reply .shop_reply__btn_report:hover {
  color: #e01100;
}

/* ---------- head 영역 정리 ---------- */
.com_shop_detail .com_shop_reply .shop_reply__head {
  margin-bottom: 14px;
}

/* ---------- 본문 - 또렷하게 ---------- */
.com_shop_detail .com_shop_reply .shop_reply__comment {
  font-size: 14px;
  line-height: 1.7;
  color: #2d2d2d;
  font-weight: 400;
  letter-spacing: -0.2px;
  word-break: break-word;
}

@media screen and (min-width: 1023.9px) {
  .com_shop_detail .com_shop_reply .shop_reply__comment {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ---------- 사진 - 본문 옆 우측에 작게 (기본 레이아웃 유지) ---------- */
.com_shop_detail .com_shop_reply .shop_reply__body {
  margin-top: 0;
}

.com_shop_detail .com_shop_reply .shop_reply__body .shop_reply__img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
}

@media screen and (min-width: 1023.9px) {
  .com_shop_detail .com_shop_reply .shop_reply__body .shop_reply__img {
    width: 120px;
    height: 120px;
    min-width: 120px;
  }
}

.com_shop_detail .com_shop_reply .shop_reply__body .shop_reply__img:hover {
  transform: scale(1.02);
}

.com_shop_detail .com_shop_reply .shop_reply__body .shop_reply__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 사진 카운트 뱃지 - 우상단 깔끔하게 */
.com_shop_detail .com_shop_reply .shop_reply__body .shop_reply__img .num {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: auto;
  left: auto;
  height: 20px;
  min-width: 24px;
  padding: 0 7px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---------- 리뷰 헤더(개수 + 정렬) ---------- */
.com_shop_detail .shop_reply__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 16px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 16px;
}

.com_shop_detail .shop_reply__top__num {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

@media screen and (min-width: 1023.9px) {
  .com_shop_detail .shop_reply__top__num {
    font-size: 18px;
  }
}

.com_shop_detail .shop_reply__top__num b.com_point_txt {
  font-weight: 700;
  color: #005f4c;
  margin: 0 2px;
}

.com_shop_detail .shop_reply__top__btns .btn {
  background: transparent;
  border: none;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 400;
  color: #8f8f8f;
  cursor: pointer;
  transition: color 0.15s ease;
}

.com_shop_detail .shop_reply__top__btns .btn:hover {
  color: #1a1a1a;
}

.com_shop_detail .shop_reply__top__btns .btn.active {
  color: #1a1a1a;
  font-weight: 600;
}

/* ---------- 리뷰 전체 보기 버튼 ---------- */
.com_shop_detail .shop_reply__bottom_btns {
  text-align: center;
  margin-top: 24px;
}

.com_shop_detail .shop_reply__bottom_btns .com_btn {
  min-width: 200px;
  height: 44px;
  font-size: 14px;
  font-weight: 500;
  border-color: #d9d9d9;
  color: #1a1a1a;
}

.com_shop_detail .shop_reply__bottom_btns .com_btn:hover {
  border-color: #005f4c;
  color: #005f4c;
}

/* ---------- 데이터 없음 ---------- */
.com_shop_detail .com_shop_reply .com_no_data {
  padding: 60px 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
  background: #fafafa;
  border-radius: 12px;
}

/* ---------- 모바일 미세조정 ---------- */
@media screen and (max-width: 1023.9px) {
  .com_shop_detail .com_shop_reply .shop_reply__head .star::before {
    font-size: 13px;
  }

  .com_shop_detail .com_shop_reply .shop_reply__head .name {
    font-size: 13px;
  }

  .com_shop_detail .com_shop_reply .shop_reply__comment {
    font-size: 13px;
    line-height: 1.7;
  }

  .com_shop_detail .com_shop_reply .shop_reply__item {
    padding: 16px;
    margin-bottom: 10px;
  }
}