.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.product-detail-top {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}



.product-image-wrap {
    flex: 0 0 500px;
}


.product-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border: 1px solid #eee;
    background: #fff;
}


.product-info {
    flex: 1;
}


.product-info-table {
    width: 100%;
    border-top: 2px solid #333;
}


.product-info-table tr {
    border-bottom: 1px solid #eee;
}


.product-info-table th {
    padding: 15px;
    background: #f8f8f8;
    width: 130px;
    text-align: left;
    font-weight: normal;
}


.product-info-table td {
    padding: 15px;
}


.product-detail-bottom {
    margin-top: 80px;
    border-top: 1px solid #ddd;
    padding-top: 80px;
    text-align:center;
}


.product-detail-bottom .size-guide {
    width:700px;
    margin-top:100px;
}


.comingsoon {
display:block;
margin:0 auto;
padding:100px 0;


}


.product-detail-bottom p {
    line-height:2.4;
    color:#333;
    font-size:20px;
}



@media (max-width: 768px) {
    .product-detail-top {
        flex-direction: column;
        gap: 20px;
    }




    .product-image-wrap {
        flex: none;
    }




    .product-image-wrap img {
        height: auto;
    }



    .product-detail-bottom img {
        width:100%;
    }



    .product-detail-bottom .size-guide {
        width:100%;
    }
    .comingsoon {
        width:250px;
        padding:50px 0;
    }
    .product-detail-bottom p {
        font-size:16px;
        word-break: keep-all;
    }
}