.page_tab {
    margin-bottom: 0;
}
/*-------------------- review_write_list --------------------*/
.review_write_list li {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.delivery_date {
    margin-bottom: 16px;
    font-size: var(--ft14);
    color: var(--gray-300);
}
.product_item {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.item_info {
    display: flex;
    gap: 14px;
}
.item_img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: var(--gray-100);
    overflow: hidden;
    position: relative;
}
.item_name {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-600);
}
.item_option {
    margin-bottom: 6px;
    font-size: var(--ft14);
    color: var(--gray-400);
}

/*-------------------- review_list --------------------*/
.review_list li {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.star {
    margin: 16px 0;
    display: flex;
    gap: 4px;
}
.star img {
    width: 14px;
    height: 14px;
}
.review_img {
    margin-top: 10px;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.zoom_btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-color: var(--black-500);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 1;
}
.zoom_btn::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(/images/zoom.svg) no-repeat center / contain;
}

.review_btm {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.review_btn {
    display: flex;
    gap: 10px;
}

/*-------------------- review_write_popup --------------------*/
.review_popup .popup_h {
    margin-bottom: 24px;
}
.review_popup .popup_form {
    margin-top: 32px;
}

/*-- rating_star --*/
.rating_star {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}
.rating_star input {
    display: none;
}
.rating_star label {
    display: block;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    mask: url('/images/start.svg') no-repeat center / contain;
    -webkit-mask: url('/images/star.svg') no-repeat center / contain;
    cursor: pointer;
}
.rating_star input:checked ~ label {
    background-color: var(--primary);
}

/*-- review_upload --*/
.review_upload {
    width: 100%;
    height: 100px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    position: relative;
}
.review_upload:hover {
    border-color: var(--gray-300);
}
.upload_label {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--ft14);
    color: var(--gray-400);
    text-align: center;
    cursor: pointer;
}
.upload_preview {
    width: 100%;
    height: 100%;
    padding: 16px;
}
.upload_img {
    width: 100%;
    height: 100%;
}
.upload_img img {
    object-fit: contain;
}
.upload_delete {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--gray-100);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
}
.upload_delete::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(/images/close.svg) no-repeat center/contain;
}