/* Bảng thông số sản phẩm [ntf_specs] — style theo bảng e_productdetail cũ:
   tiêu đề nhóm 20px đậm, nhóm ngăn cách bằng đường kẻ ngang,
   lưới 9 cột desktop / 3 cột mobile, nhãn thường - giá trị đậm, chữ 12.5px. */

.ntf-specs {
    margin: 10px 0;
}

/* Đường kẻ ngang giữa các nhóm (thay <hr> của bản cũ). */
.ntf-specs-group + .ntf-specs-group {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ececec;
}

.ntf-specs-group-title {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.ntf-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
}

@media screen and (min-width: 850px) {
    .ntf-specs-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.ntf-spec {
    min-width: 0;
    font-size: 12.5px;
    line-height: 1.4;
}

.ntf-spec-label,
.ntf-spec-value {
    display: block;
    overflow-wrap: break-word;
}

.ntf-spec-value {
    font-weight: 700;
}

/* Term thuộc tính biến thể: specs.js ẩn/hiện theo biến thể đang chọn;
   dấu phẩy chỉ chèn giữa hai term đang hiện. */
.ntf-spec-term[hidden] {
    display: none;
}

.ntf-spec-term:not([hidden]) ~ .ntf-spec-term:not([hidden])::before {
    content: ", ";
}

@media only screen and (max-width: 48em) {
    .ntf-spec {
        font-size: 12px;
    }
}
