.sub-visual {
    background-image: url(../img/sub/products/product_visual.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section1 {
    padding-left: var(--pad-left);
    padding-right: var(--pad-right);
}

.product-wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-wrap .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.product-wrap .box .img {
    width: 50%;
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-wrap .box .table {
    width: 50%;
    flex: 1 1 0;
}

.product-wrap .box .table p {
    color: #FFF;
    font-family: var(--font-ox);
    font-size: 40px;
    font-weight: 700;
    line-height: 150%;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    border: 1px solid rgba(221, 221, 221, 0.20);
}

.spec-table th,
.spec-table td {
    vertical-align: middle;
    border: 1px solid rgba(221, 221, 221, 0.20);
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%; 
    padding: 10px 12px;
}

.spec-table th {
    background: rgba(255, 255, 255, 0.02);
}

.spec-table td {
    background: rgba(236, 77, 55, 0.60);
}

.spec-table td.blue {
    background: rgba(34, 87, 167, 0.60); 
}

.spec-table2{
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    border: 1px solid rgba(221, 221, 221, 0.20);
}

.spec-table2 thead th{
    background-color: var(--red-theme-primary-main);
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%; 
    border: 1px solid rgba(221, 221, 221, 0.20);
    vertical-align: middle;
    padding: 10px 12px
}

.spec-table2 tbody th{
    border-top: 1px solid rgba(221, 221, 221, 0.20);
    border-left: 1px solid rgba(221, 221, 221, 0.20);
    background: rgba(255, 255, 255, 0.02);
    vertical-align: middle;
    color: var(--red-theme-primary-main);
    font-size: 18px;
    font-weight: 500;
    line-height: 130%; 
}

.spec-table2 td {
    vertical-align: middle;
    border: 1px solid rgba(221, 221, 221, 0.20);
    background: rgba(255, 255, 255, 0.05);
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%; 
    padding: 10px 12px;
}


@media screen and (max-width:1024px) {
    .product-wrap .box .table p{
        font-size: 30px;
    }
    .spec-table th, .spec-table td{
        font-size: 16px;
    }
    .spec-table2 thead th{
        font-size: 18px;
    }
    .spec-table2 tbody th{
        font-size: 16px;
    }
    .spec-table2 td{
        font-size: 16px;
    }
}

@media screen and (max-width:991px) {
    .product-wrap{
        gap: 60px;
    }
    .product-wrap .box{
        flex-direction: column;
        gap: 30px;
    }
    .product-wrap .box .img{
        width: 100%;
    }
    .product-wrap .box .table{
        width: 100%;
    }
    .spec-table{
        margin-top: 20px;
    }
}

@media screen and (max-width:768px) {
    .product-wrap .box{
        gap: 20px;
    }
    .product-wrap .box .table p{
        font-size: 20px;
    }
    .product-wrap .box .img img{
        width: 80%;
    }
    .spec-table{
        margin-top: 10px;
    }
    .spec-table th, .spec-table td{
        font-size: 14px;
    }
    .spec-table2 thead th{
        font-size: 16px;
    }
    .spec-table2 tbody th{
        font-size: 14px;
    }
    .spec-table2 td{
        font-size: 14px;
    }
}