/* 1. 기본 배경 및 폰트 설정 */
.container .contents {
    font-family: 'Noto Sans KR', -apple-system, sans-serif;
    background-color: #fdf8f4;
    padding-bottom: 50px;
}

/* 2. 상단 타이틀 영역 (영문 서브타이틀 포함) */
.page_title_wrap {
    text-align: center;
    margin: 60px 0 50px;
}

.page_title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1.2px;
    margin-bottom: 8px;
}

.page_subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #4A5568;
    /* 시크한 슬레이트 블루/그레이 */
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.page_description {
    font-size: 14px;
    color: #888;
    margin-top: 25px;
    position: relative;
    display: inline-block;
    padding-top: 15px;
}

.page_description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    /* 선 길이를 짧게 조절하여 더 세련되게 */
    height: 1.5px;
    background-color: #222;
    /* 블랙 버튼과 매칭 */
}

/* 3. 리스트 및 카드 레이아웃 */
.modern-board-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.review_list_wrap {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 95%;
}

.review_list_wrap li {
    display: flex;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    /* 더 둥글게 처리하여 현대적인 느낌 */
    padding: 28px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    align-items: flex-start;
}

.review_list_wrap li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

/* 4. 좌측 상품 이미지 영역 */
.text_reivew_prd_wrap {
    width: 140px;
    flex-shrink: 0;
    margin-right: 32px;
}

.reivew_prd_img {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    background: #f9f9f9;
}

.reivew_prd_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* "제품 보기" 버튼 - 훨씬 깔끔한 스타일로 변경 */
.review_prd_btn {
    margin-top: 12px;
}

.review_prd_btn a {
    display: block;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}

.review_prd_btn a:hover {
    background: #eee;
    color: #222;
}

/* 5. 우측 정보 영역 */
.text_reivew_con_wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review_icon_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.review_con_num {
    font-size: 13px;
    color: #aaa;
    font-weight: 600;
}

/* 배지 스타일 */
.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.badge-pending {
    background-color: #fef3c7;
    color: #d97706;
}

.badge-review {
    background-color: #fef3c7;
    color: #d97706;
}

.badge-approved {
    background-color: #e0f2fe;
    color: #0284c7;
}

.badge-rejected {
    background-color: #fee2e2;
    color: #dc2626;
}

/* 상품명 및 옵션 위계 조정 */
.review_prd_name span:first-child {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.prd_option {
    display: inline-block;
    font-size: 13px;
    color: #777;
    background: #f8f8f8;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 6px;
}

.review_con_info_date {
    font-size: 13px;
    color: #bbb;
    margin-top: 8px;
}

/* 6. 하단 가격 비교 영역 (깔끔한 정렬) */
.review_price_wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
    /* 구분선 추가 */
    display: flex;
    flex-direction: column;
}

.price_original {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    margin-bottom: 5px;
}

.price_reported {
    font-size: 15px;
    font-weight: 500;
    color: #111;
}

/* 신고가 강조 스타일 */
.price_reported {
    color: #111;
}

/* 타사 가격 숫자만 강조 */
.price_reported span,
.price_reported b {
    color: #d51f4a;
    font-weight: 800;
    font-size: 19px;
}

/* 7. 버튼 및 기타 */
.review_action_wrap {
    align-self: flex-end;
    margin-top: -10px;
    /* 가격 정보와 나란히 보이도록 조정 */
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #222222;
    /* 고른 블랙 컬러 */
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #444444;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* 더보기 버튼 */
.btn-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 18px;
    margin-top: 30px;
    background: #fff;
    border: 1px solid #eee;
    color: #555;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-more:hover {
    background: #f9f9f9;
    color: #222;
}

.empty-state {
    text-align: center;
    padding: 100px 0;
    color: #999;
}

.btn_go_price {
    display: inline-block;
    width: 325px;
    background: rgb(0, 123, 255);
    color: rgb(255, 255, 255);
    border-radius: 4px;
    margin-top: 8px;
    font-size: 16px;
}

.btn_go_price a {
    display: block;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 16px;
}

.btn_go_price:hover {
    background: rgb(29, 138, 255);
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}