.product-specs {
    column-count: 2; /* קובע שתי עמודות */
    column-gap: 15px; /* ללא רווח בין העמודות */
}

.group_specs {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}
.group_specs h3 {
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    background: #E6EDED;
    padding: 6px;
}
.g_specs {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #CCC;
}
.g_specs:last-child{
    border-bottom:none;
}
.g_specs p {
    margin-bottom: 5px;
    font-size: 15px;
}
p.group_name {
    width: 20%;
}
p.group_value{
    width: 80%;
    direction: ltr;
    text-align: right;
}
@media(max-width:786px){
    .product-specs {
        column-count: 1;
    }
}