/* Product Specification Table */
.product-spec-table{
  width:100%;
  border-collapse:collapse;
  margin:15px 0;
  font-size:14px;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:700; /* ✅ ALL TEXT BOLD */
}

/* Table cells */
.product-spec-table th,
.product-spec-table td{
  border:1px solid #e5e5e5;
  padding:8px 10px;
  vertical-align:top;
}

/* Left title column */
.product-spec-table th{
  width:35%;
  background:#fafafa;
  text-align:left;
  color:#222;
}

/* Right value column */
.product-spec-table td{
  color:#333;
  min-width:50px;
}

/* Bullet point rows (full width) */
.product-spec-table .bullet-row th{
  border:none;
  background:transparent;
  padding:4px 10px;
  text-align:left;
  color:#333;
   font-weight: 700 !important;
}

.product-spec-table th,
.product-spec-table td,
.product-spec-table th * ,
.product-spec-table td * {
    font-weight: 700 !important; /* force bold */
}


/* Mobile responsive */
@media (max-width: 768px){
  .product-spec-table{
    font-size:13px;
  }

  .product-spec-table th{
    width:45%;
  }
}
