
	/* sub.css에 있던 내용 다른곳에 영향가서 가져옴*/
	#detail_wrap_new{
        width: 100%;
        background-color: #fff;
        border: 1px solid #EEEEEE;
        box-sizing: border-box;
        float: left;
        font-family: 'pretendard';
    }
    
    /* 1024px 기준 반응형 계산을 위한 CSS 변수 */
    :root {
        --base-width: 1024;
    }
    
    
    .product_information_header{
        width: 100%;	
        text-align: end;
    }
    
    .product_information {
        display: flex;
        width: 100%;
        border: 1px solid #eee;
    }
    
    .product_information_left {
        width: 500px;
        border-right: 1px solid #EEEEEE;
        box-sizing: border-box;
    }
    
    .product_information_right {
        width: 100%;
    }
    
    .linebox{ 
        width:calc(100% - 10px); 
        text-align:center;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .down {
        display: flex;
        justify-content: center;
    }
    
    .inbox{ 
        width: 31.5%; 
        background-color: #EAEAEA; 
        text-align:center;  
        padding-top: 8px; 
        padding-bottom: 8px; 
        cursor: pointer; 
    }
    
    .product_information_right {
        padding: 22px 38px 35px 38px;
    }
    
    .product_information_right_title_text{
        font-size: 20px;
        font-weight: 600;
        color: #000;
        line-height: 1.5;
        margin-right: 4px;
        display: inline !important;
        vertical-align: middle;
    }
    .product_information_right_title {
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
    }
    .product_information_right_title span {
        vertical-align: middle;
    }
    
    .review_all{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 13px;
    }
    
    .review_title_bar {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    
    .review_title {
        font-size: 26px;
        font-weight: 700;
        line-height: 39px;
        color: #000;
    }
    
    .review_description {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        font-size: 15px;
        font-weight: 500;
        color: #4E85FF;
        cursor: pointer;
        right: 0px;
        text-align: center;
    
    }
    .review_description_arrow {
        vertical-align: middle;
    }
    
    .review_menu {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .review_menu_item{
        width: 400px;
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        color: #5C5C5C;
        line-height: 33px;
        padding: 8px 0;
        border-bottom: 4px solid #F6F6F8;
        cursor: pointer;
    }
    .select_menu {
        color: #000;
        border-bottom: 4px solid #232323;
    }
    
    #writeReviewPopup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 485px;
        height: 854px;
        z-index: 999999;
        background-color: #fff;
        box-shadow: 0 0 7px #00000026;
    }
    /* sub.css에 있던 내용 */


    #writeReviewPopup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 485px;
        /* height: 854px; */
        height: auto;
        z-index: 999999;
        background-color: #fff;
        border-radius: 3px;
        border: 1px solid #F4F4F4;
    }

    #writeReviewArea::placeholder,
    #editReviewArea::placeholder {
        font-size: 16px;
        color: #BFBFBF;
    }

    .arrow_rotated {
        transform: rotate(180deg);
    }
    .my_review_btn {
        width: 66px;
        height: 34px;
        display: flex;
        justify-content: center; 
        align-items: center;
        border:1px solid #c9c9c9;
        border-radius: 3px;
        color: #616161;
        font-size: 16px; 
        font-weight: 600;
        cursor: pointer;
    }
    
    /* 페이징 스타일 */
    .pagination-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .pagination {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 4px;
    }

    .pagination li {
        display: flex;
        align-items: center;
    }

    .pagination .active {
        background-color: #3D3D3F;
        border-radius: 3px;
    }

    .pagination .default {
        background-color: transparent;
        border-radius: 3px;
    }

    .pagination .disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .pagination .page {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        color: #000;
        transition: all 0.2s ease;
    }

    .pagination .active .page {
        color: #fff;
    }

    .pagination .disabled .page {
        cursor: not-allowed;
    }

    .pagination li img {
        width: 14px;
        height: 10px;
    }